GameStateManagementSample.DesktopGL.csproj 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProductVersion>8.0.30703</ProductVersion>
  8. <SchemaVersion>2.0</SchemaVersion>
  9. <ProjectGuid>{055FEDD0-AB52-45CE-A74D-48C009E4DB73}</ProjectGuid>
  10. <OutputType>WinExe</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>GameStateManagementSample</RootNamespace>
  13. <AssemblyName>GameStateManagementSample</AssemblyName>
  14. <FileAlignment>512</FileAlignment>
  15. <MonoGamePlatform>DesktopGL</MonoGamePlatform>
  16. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  19. <DebugSymbols>true</DebugSymbols>
  20. <OutputPath>bin\$(MonoGamePlatform)\$(Platform)\$(Configuration)\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE;LINUX</DefineConstants>
  22. <DebugType>full</DebugType>
  23. <PlatformTarget>AnyCPU</PlatformTarget>
  24. <ErrorReport>prompt</ErrorReport>
  25. <Prefer32Bit>false</Prefer32Bit>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  29. <OutputPath>bin\$(MonoGamePlatform)\$(Platform)\$(Configuration)\</OutputPath>
  30. <DefineConstants>TRACE;LINUX</DefineConstants>
  31. <Optimize>true</Optimize>
  32. <DebugType>pdbonly</DebugType>
  33. <PlatformTarget>AnyCPU</PlatformTarget>
  34. <ErrorReport>prompt</ErrorReport>
  35. <Prefer32Bit>false</Prefer32Bit>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <PropertyGroup>
  39. <ApplicationIcon>Icon.ico</ApplicationIcon>
  40. </PropertyGroup>
  41. <PropertyGroup>
  42. <ApplicationManifest>app.manifest</ApplicationManifest>
  43. </PropertyGroup>
  44. <ItemGroup>
  45. <Compile Include="..\..\SampleCode\Game.cs">
  46. <Link>Game.cs</Link>
  47. </Compile>
  48. <Compile Include="..\..\SampleCode\ScreenFactory.cs">
  49. <Link>ScreenFactory.cs</Link>
  50. </Compile>
  51. <Compile Include="..\..\SampleCode\Screens\BackgroundScreen.cs">
  52. <Link>Screens\BackgroundScreen.cs</Link>
  53. </Compile>
  54. <Compile Include="..\..\SampleCode\Screens\Button.cs">
  55. <Link>Screens\Button.cs</Link>
  56. </Compile>
  57. <Compile Include="..\..\SampleCode\Screens\GameplayScreen.cs">
  58. <Link>Screens\GameplayScreen.cs</Link>
  59. </Compile>
  60. <Compile Include="..\..\SampleCode\Screens\LoadingScreen.cs">
  61. <Link>Screens\LoadingScreen.cs</Link>
  62. </Compile>
  63. <Compile Include="..\..\SampleCode\Screens\MainMenuScreen.cs">
  64. <Link>Screens\MainMenuScreen.cs</Link>
  65. </Compile>
  66. <Compile Include="..\..\SampleCode\Screens\MenuEntry.cs">
  67. <Link>Screens\MenuEntry.cs</Link>
  68. </Compile>
  69. <Compile Include="..\..\SampleCode\Screens\MenuScreen.cs">
  70. <Link>Screens\MenuScreen.cs</Link>
  71. </Compile>
  72. <Compile Include="..\..\SampleCode\Screens\MessageBoxScreen.cs">
  73. <Link>Screens\MessageBoxScreen.cs</Link>
  74. </Compile>
  75. <Compile Include="..\..\SampleCode\Screens\OptionsMenuScreen.cs">
  76. <Link>Screens\OptionsMenuScreen.cs</Link>
  77. </Compile>
  78. <Compile Include="..\..\SampleCode\Screens\PauseMenuScreen.cs">
  79. <Link>Screens\PauseMenuScreen.cs</Link>
  80. </Compile>
  81. <Compile Include="..\..\SampleCode\Screens\PhoneMainMenuScreen.cs">
  82. <Link>Screens\PhoneMainMenuScreen.cs</Link>
  83. </Compile>
  84. <Compile Include="..\..\SampleCode\Screens\PhoneMenuScreen.cs">
  85. <Link>Screens\PhoneMenuScreen.cs</Link>
  86. </Compile>
  87. <Compile Include="..\..\SampleCode\Screens\PhonePauseScreen.cs">
  88. <Link>Screens\PhonePauseScreen.cs</Link>
  89. </Compile>
  90. <Compile Include="..\..\SampleCode\Screens\PlayerIndexEventArgs.cs">
  91. <Link>Screens\PlayerIndexEventArgs.cs</Link>
  92. </Compile>
  93. <Compile Include="Program.cs" />
  94. <Compile Include="Properties\AssemblyInfo.cs" />
  95. </ItemGroup>
  96. <ItemGroup>
  97. <Reference Include="MonoGame.Framework">
  98. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\MonoGame.Framework.dll</HintPath>
  99. </Reference>
  100. <Reference Include="System" />
  101. <Reference Include="System.Xml" />
  102. </ItemGroup>
  103. <ItemGroup>
  104. <EmbeddedResource Include="Icon.ico" />
  105. <EmbeddedResource Include="Icon.bmp" />
  106. </ItemGroup>
  107. <ItemGroup>
  108. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\x86\SDL2.dll">
  109. <Link>x86\SDL2.dll</Link>
  110. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  111. </None>
  112. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\x64\SDL2.dll">
  113. <Link>x64\SDL2.dll</Link>
  114. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  115. </None>
  116. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\x86\soft_oal.dll">
  117. <Link>x86\soft_oal.dll</Link>
  118. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  119. </None>
  120. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\x64\soft_oal.dll">
  121. <Link>x64\soft_oal.dll</Link>
  122. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  123. </None>
  124. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\x86\libSDL2-2.0.so.0">
  125. <Link>x86\libSDL2-2.0.so.0</Link>
  126. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  127. </None>
  128. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\x64\libSDL2-2.0.so.0">
  129. <Link>x64\libSDL2-2.0.so.0</Link>
  130. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  131. </None>
  132. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\x86\libopenal.so.1">
  133. <Link>x86\libopenal.so.1</Link>
  134. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  135. </None>
  136. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\x64\libopenal.so.1">
  137. <Link>x64\libopenal.so.1</Link>
  138. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  139. </None>
  140. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\libSDL2-2.0.0.dylib">
  141. <Link>libSDL2-2.0.0.dylib</Link>
  142. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  143. </None>
  144. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\libopenal.1.dylib">
  145. <Link>libopenal.1.dylib</Link>
  146. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  147. </None>
  148. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\MonoGame.Framework.dll.config">
  149. <Link>MonoGame.Framework.dll.config</Link>
  150. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  151. </None>
  152. <MonoGameContentReference Include="..\..\Content\Content.mgcb">
  153. <Link>Content\Content.mgcb</Link>
  154. </MonoGameContentReference>
  155. <None Include="app.manifest" />
  156. </ItemGroup>
  157. <ItemGroup />
  158. <ItemGroup>
  159. <ProjectReference Include="..\..\GameStateManagement\GameStateManagement.csproj">
  160. <Project>{08cf175b-0057-47af-8c8d-406010a53895}</Project>
  161. <Name>GameStateManagement</Name>
  162. </ProjectReference>
  163. </ItemGroup>
  164. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  165. <Import Project="$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Content.Builder.targets" />
  166. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  167. Other similar extension points exist, see Microsoft.Common.targets.
  168. <Target Name="BeforeBuild">
  169. </Target>
  170. <Target Name="AfterBuild">
  171. </Target>
  172. -->
  173. </Project>