ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/EmuXPortal/branches/mono-xml-linq/EmuXPortal/EmuXPortal.csproj
Revision: 329
Committed: Tue Dec 19 00:57:24 2017 UTC (5 years, 3 months ago) by william
File size: 6208 byte(s)
Log Message:
+ creating a branch to load xml data using linq

File Contents

# Content
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6 <ProjectGuid>{C6A57BE4-A8B6-4298-B022-62F40FB1CB18}</ProjectGuid>
7 <OutputType>WinExe</OutputType>
8 <AppDesignerFolder>Properties</AppDesignerFolder>
9 <RootNamespace>EmuXPortal</RootNamespace>
10 <AssemblyName>EmuXPortal</AssemblyName>
11 <TargetFrameworkProfile>
12 </TargetFrameworkProfile>
13 <FileAlignment>512</FileAlignment>
14 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
15 </PropertyGroup>
16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
17 <PlatformTarget>x86</PlatformTarget>
18 <Optimize>false</Optimize>
19 <OutputPath>bin\Debug</OutputPath>
20 <WarningLevel>4</WarningLevel>
21 <UseVSHostingProcess>false</UseVSHostingProcess>
22 <DebugSymbols>true</DebugSymbols>
23 <DefineConstants>DEBUG;TRACE</DefineConstants>
24 </PropertyGroup>
25 <ItemGroup>
26 <Reference Include="System" />
27 <Reference Include="System.Core" />
28 <Reference Include="System.Xml.Linq" />
29 <Reference Include="System.Data.DataSetExtensions" />
30 <Reference Include="System.Data" />
31 <Reference Include="System.Drawing" />
32 <Reference Include="System.Windows.Forms" />
33 <Reference Include="System.Xml" />
34 <Reference Include="Enterprise.Logging">
35 <HintPath>..\deps\Enterprise.Logging\Enterprise.Logging.dll</HintPath>
36 </Reference>
37 <Reference Include="Utilities.TransparentControls">
38 <HintPath>..\deps\TransparentControls\Utilities.TransparentControls.dll</HintPath>
39 </Reference>
40 <Reference Include="Enterprise.CrossPlatform">
41 <HintPath>..\deps\Enterprise.CrossPlatform\Enterprise.CrossPlatform.dll</HintPath>
42 </Reference>
43 </ItemGroup>
44 <ItemGroup>
45 <Compile Include="Form1.cs">
46 <SubType>Form</SubType>
47 </Compile>
48 <Compile Include="Form1.Designer.cs">
49 <DependentUpon>Form1.cs</DependentUpon>
50 </Compile>
51 <Compile Include="GameControl.cs">
52 <SubType>UserControl</SubType>
53 </Compile>
54 <Compile Include="GameControl.Designer.cs">
55 <DependentUpon>GameControl.cs</DependentUpon>
56 </Compile>
57 <Compile Include="PlatformControl.cs">
58 <SubType>UserControl</SubType>
59 </Compile>
60 <Compile Include="PlatformControl.Designer.cs">
61 <DependentUpon>PlatformControl.cs</DependentUpon>
62 </Compile>
63 <Compile Include="Program.cs" />
64 <Compile Include="Properties\AssemblyInfo.cs" />
65 <EmbeddedResource Include="Form1.resx">
66 <DependentUpon>Form1.cs</DependentUpon>
67 </EmbeddedResource>
68 <EmbeddedResource Include="GameControl.resx">
69 <DependentUpon>GameControl.cs</DependentUpon>
70 </EmbeddedResource>
71 <EmbeddedResource Include="PlatformControl.resx">
72 <DependentUpon>PlatformControl.cs</DependentUpon>
73 </EmbeddedResource>
74 <EmbeddedResource Include="Properties\Resources.resx">
75 <Generator>ResXFileCodeGenerator</Generator>
76 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
77 <SubType>Designer</SubType>
78 </EmbeddedResource>
79 <Compile Include="Properties\Resources.Designer.cs">
80 <AutoGen>True</AutoGen>
81 <DependentUpon>Resources.resx</DependentUpon>
82 <DesignTime>True</DesignTime>
83 </Compile>
84 <None Include="app.config" />
85 <None Include="Properties\Settings.settings">
86 <Generator>SettingsSingleFileGenerator</Generator>
87 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
88 </None>
89 <Compile Include="Properties\Settings.Designer.cs">
90 <AutoGen>True</AutoGen>
91 <DependentUpon>Settings.settings</DependentUpon>
92 <DesignTimeSharedInput>True</DesignTimeSharedInput>
93 </Compile>
94 <None Include="..\config.ini">
95 <Link>config.ini</Link>
96 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
97 </None>
98 <None Include="..\config-dbg.ini">
99 <Link>config-dbg.ini</Link>
100 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
101 </None>
102 <None Include="..\emu.config">
103 <Link>emu.config</Link>
104 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
105 </None>
106 <None Include="..\deps\Enterprise.Logging\Enterprise.Logging.dll.mdb">
107 <Link>Enterprise.Logging.dll.mdb</Link>
108 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
109 </None>
110 <None Include="..\deps\Enterprise.CrossPlatform\Enterprise.CrossPlatform.dll.mdb">
111 <Link>Enterprise.CrossPlatform.dll.mdb</Link>
112 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
113 </None>
114 <None Include="..\deps\TransparentControls\Utilities.TransparentControls.dll.mdb">
115 <Link>Utilities.TransparentControls.dll.mdb</Link>
116 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
117 </None>
118 <None Include="game_example.config">
119 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
120 </None>
121 </ItemGroup>
122 <ItemGroup>
123 <None Include="Resources\game.png" />
124 </ItemGroup>
125 <ItemGroup>
126 <None Include="Resources\games.png" />
127 </ItemGroup>
128 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
129 <PropertyGroup>
130 <PostBuildEvent>
131 </PostBuildEvent>
132 </PropertyGroup>
133 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
134 Other similar extension points exist, see Microsoft.Common.targets.
135 <Target Name="BeforeBuild">
136 </Target>
137 <Target Name="AfterBuild">
138 </Target>
139 -->
140 <ItemGroup>
141 <ProjectReference Include="..\EmuXPortal.Api\EmuXPortal.Api.csproj">
142 <Project>{E3E705C1-2051-4332-AE10-0D31F24AE40C}</Project>
143 <Name>EmuXPortal.Api</Name>
144 </ProjectReference>
145 <ProjectReference Include="..\EmuXPortal.Versioning\EmuXPortal.Versioning.csproj">
146 <Project>{C3DDF869-7910-4F12-AAA4-C2DD96539D3D}</Project>
147 <Name>EmuXPortal.Versioning</Name>
148 </ProjectReference>
149 </ItemGroup>
150 </Project>