MonoGame.Samples.GameStateManagement.iOS.csproj 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  3. <PropertyGroup>
  4. <ProjectGuid>{B1A596F8-B26C-4826-99D1-94C9327AB586}</ProjectGuid>
  5. <ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProductVersion>9.0.21022</ProductVersion>
  9. <SchemaVersion>2.0</SchemaVersion>
  10. <OutputType>Exe</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>GameStateManagement</RootNamespace>
  13. <Thumbnail>GameThumbnail.png</Thumbnail>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
  20. <DefineConstants>DEBUG;IPHONE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
  24. <MtouchLink>None</MtouchLink>
  25. <MtouchDebug>true</MtouchDebug>
  26. <MtouchI18n />
  27. <MtouchUseArmv7>false</MtouchUseArmv7>
  28. <AssemblyName>GameStateManagement</AssemblyName>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
  31. <DebugType>none</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\iPhoneSimulator\Release</OutputPath>
  34. <ErrorReport>prompt</ErrorReport>
  35. <DefineConstants>IPHONE</DefineConstants>
  36. <WarningLevel>4</WarningLevel>
  37. <MtouchI18n />
  38. <MtouchUseArmv7>false</MtouchUseArmv7>
  39. <AssemblyName>GameStateManagement</AssemblyName>
  40. </PropertyGroup>
  41. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
  42. <DebugSymbols>true</DebugSymbols>
  43. <DebugType>full</DebugType>
  44. <Optimize>false</Optimize>
  45. <OutputPath>bin\iPhone\Debug</OutputPath>
  46. <DefineConstants>DEBUG;IPHONE</DefineConstants>
  47. <ErrorReport>prompt</ErrorReport>
  48. <WarningLevel>4</WarningLevel>
  49. <MtouchDebug>true</MtouchDebug>
  50. <MtouchI18n />
  51. <MtouchSdkVersion>4.0</MtouchSdkVersion>
  52. <MtouchUseArmv7>false</MtouchUseArmv7>
  53. <AssemblyName>GameStateManagement</AssemblyName>
  54. </PropertyGroup>
  55. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
  56. <DebugType>none</DebugType>
  57. <Optimize>true</Optimize>
  58. <OutputPath>bin\iPhone\Release</OutputPath>
  59. <DefineConstants>IPHONE</DefineConstants>
  60. <ErrorReport>prompt</ErrorReport>
  61. <WarningLevel>4</WarningLevel>
  62. <MtouchI18n />
  63. <CodesignKey>iPhone Developer</CodesignKey>
  64. <MtouchSdkVersion>4.0</MtouchSdkVersion>
  65. <MtouchUseArmv7>false</MtouchUseArmv7>
  66. <AssemblyName>GameStateManagement</AssemblyName>
  67. </PropertyGroup>
  68. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  69. <DebugType>none</DebugType>
  70. <Optimize>false</Optimize>
  71. <OutputPath>bin\Debug</OutputPath>
  72. <WarningLevel>4</WarningLevel>
  73. <AssemblyName>MonoGameSamplesGameStateManagement</AssemblyName>
  74. <MtouchUseArmv7>false</MtouchUseArmv7>
  75. </PropertyGroup>
  76. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  77. <DebugType>none</DebugType>
  78. <Optimize>false</Optimize>
  79. <OutputPath>bin\Release</OutputPath>
  80. <WarningLevel>4</WarningLevel>
  81. <AssemblyName>MonoGameSamplesGameStateManagement</AssemblyName>
  82. <MtouchUseArmv7>false</MtouchUseArmv7>
  83. </PropertyGroup>
  84. <ItemGroup>
  85. <Reference Include="System" />
  86. <Reference Include="System.Xml" />
  87. <Reference Include="System.Core" />
  88. <Reference Include="monotouch" />
  89. </ItemGroup>
  90. <ItemGroup>
  91. <Folder Include="Content\" />
  92. </ItemGroup>
  93. <ItemGroup>
  94. <Compile Include="Game.cs" />
  95. <Compile Include="Program.cs" />
  96. <Compile Include="Properties\AssemblyInfo.cs" />
  97. <Compile Include="ScreenManager\GameScreen.cs" />
  98. <Compile Include="ScreenManager\InputState.cs" />
  99. <Compile Include="ScreenManager\ScreenManager.cs" />
  100. <Compile Include="Screens\BackgroundScreen.cs" />
  101. <Compile Include="Screens\GameplayScreen.cs" />
  102. <Compile Include="Screens\LoadingScreen.cs" />
  103. <Compile Include="Screens\MainMenuScreen.cs" />
  104. <Compile Include="Screens\MenuEntry.cs" />
  105. <Compile Include="Screens\MenuScreen.cs" />
  106. <Compile Include="Screens\MessageBoxScreen.cs" />
  107. <Compile Include="Screens\OptionsMenuScreen.cs" />
  108. <Compile Include="Screens\PauseMenuScreen.cs" />
  109. <Compile Include="Screens\PlayerIndexEventArgs.cs" />
  110. </ItemGroup>
  111. <ItemGroup>
  112. <None Include="GameThumbnail.png" />
  113. <None Include="Info.plist" />
  114. </ItemGroup>
  115. <ItemGroup>
  116. <Content Include="Content\background.png">
  117. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  118. </Content>
  119. <Content Include="Content\blank.png">
  120. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  121. </Content>
  122. <Content Include="Default.png">
  123. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  124. </Content>
  125. <Content Include="Content\gamefont.xnb">
  126. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  127. </Content>
  128. <Content Include="Content\gradient.png">
  129. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  130. </Content>
  131. <Content Include="Content\menufont.xnb" />
  132. </ItemGroup>
  133. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  134. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  135. Other similar extension points exist, see Microsoft.Common.targets.
  136. <Target Name="BeforeBuild">
  137. </Target>
  138. <Target Name="AfterBuild">
  139. </Target>
  140. -->
  141. <ItemGroup>
  142. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.iOS.csproj">
  143. <Project>{DB8508BB-9849-4CC2-BC0F-8EB5DACB3C47}</Project>
  144. <Name>MonoGame.Framework.iOS</Name>
  145. </ProjectReference>
  146. </ItemGroup>
  147. </Project>