NetworkStateManagementXbox.csproj 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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>{F5874775-2AF8-4B57-9D01-ED48F13F18A8}</ProjectGuid>
  5. <ProjectTypeGuids>{6D335F3A-9D43-41b4-9D22-F6F17C4BE596};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">Xbox 360</Platform>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>NetworkStateManagement</RootNamespace>
  11. <AssemblyName>NetworkStateManagement</AssemblyName>
  12. <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
  13. <XnaPlatform>Xbox 360</XnaPlatform>
  14. <XnaCrossPlatformGroupID>9bcee7ff-5246-4265-9250-d0ef22312461</XnaCrossPlatformGroupID>
  15. <ApplicationIcon>Game.ico</ApplicationIcon>
  16. <Thumbnail>NetworkStateManagement.png</Thumbnail>
  17. <XnaUpgrade>
  18. </XnaUpgrade>
  19. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  20. <FileUpgradeFlags>
  21. </FileUpgradeFlags>
  22. <OldToolsVersion>3.5</OldToolsVersion>
  23. <UpgradeBackupLocation>
  24. </UpgradeBackupLocation>
  25. <IsWebBootstrapper>false</IsWebBootstrapper>
  26. <XnaOutputType>Game</XnaOutputType>
  27. <XnaProfile>Reach</XnaProfile>
  28. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  29. <PublishUrl>publish\</PublishUrl>
  30. <Install>true</Install>
  31. <InstallFrom>Disk</InstallFrom>
  32. <UpdateEnabled>false</UpdateEnabled>
  33. <UpdateMode>Foreground</UpdateMode>
  34. <UpdateInterval>7</UpdateInterval>
  35. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  36. <UpdatePeriodically>false</UpdatePeriodically>
  37. <UpdateRequired>false</UpdateRequired>
  38. <MapFileExtensions>true</MapFileExtensions>
  39. <ApplicationRevision>0</ApplicationRevision>
  40. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  41. <UseApplicationTrust>false</UseApplicationTrust>
  42. <BootstrapperEnabled>true</BootstrapperEnabled>
  43. </PropertyGroup>
  44. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Xbox 360' ">
  45. <OutputPath>bin\Xbox 360\Debug</OutputPath>
  46. <ErrorReport>prompt</ErrorReport>
  47. <WarningLevel>4</WarningLevel>
  48. <NoStdLib>true</NoStdLib>
  49. <UseVSHostingProcess>false</UseVSHostingProcess>
  50. <DebugSymbols>true</DebugSymbols>
  51. <DebugType>full</DebugType>
  52. <Optimize>false</Optimize>
  53. <DefineConstants>DEBUG;TRACE;XBOX;XBOX360</DefineConstants>
  54. <XnaCompressContent>true</XnaCompressContent>
  55. </PropertyGroup>
  56. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Xbox 360' ">
  57. <OutputPath>bin\Xbox 360\Release</OutputPath>
  58. <ErrorReport>prompt</ErrorReport>
  59. <WarningLevel>4</WarningLevel>
  60. <NoStdLib>true</NoStdLib>
  61. <UseVSHostingProcess>false</UseVSHostingProcess>
  62. <DebugType>pdbonly</DebugType>
  63. <Optimize>true</Optimize>
  64. <DefineConstants>TRACE;XBOX;XBOX360</DefineConstants>
  65. <XnaCompressContent>true</XnaCompressContent>
  66. </PropertyGroup>
  67. <ItemGroup>
  68. <ProjectReference Include="Content\NetworkStateManagementContent.contentproj">
  69. <Project>{5E2F601C-A919-414A-AECD-CD1F837F9465}</Project>
  70. <Name>NetworkStateManagementContent %28Content%29</Name>
  71. <XnaReferenceType>Content</XnaReferenceType>
  72. </ProjectReference>
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Compile Include="Game.cs" />
  76. <Compile Include="Networking\AvailableSessionMenuEntry.cs" />
  77. <Compile Include="Networking\NetworkSessionComponent.cs" />
  78. <Compile Include="Networking\OperationCompletedEventArgs.cs" />
  79. <Compile Include="Properties\AssemblyInfo.cs" />
  80. <Compile Include="Resources.Designer.cs">
  81. <AutoGen>True</AutoGen>
  82. <DesignTime>True</DesignTime>
  83. <DependentUpon>Resources.resx</DependentUpon>
  84. </Compile>
  85. <Compile Include="ScreenManager\GameScreen.cs" />
  86. <Compile Include="ScreenManager\InputState.cs" />
  87. <Compile Include="ScreenManager\ScreenManager.cs" />
  88. <Compile Include="Screens\BackgroundScreen.cs" />
  89. <Compile Include="Networking\CreateOrFindSessionScreen.cs" />
  90. <Compile Include="Screens\GameplayScreen.cs" />
  91. <Compile Include="Networking\JoinSessionScreen.cs" />
  92. <Compile Include="IMessageDisplay.cs" />
  93. <Compile Include="Screens\LoadingScreen.cs" />
  94. <Compile Include="Networking\LobbyScreen.cs" />
  95. <Compile Include="Screens\MainMenuScreen.cs" />
  96. <Compile Include="Screens\MenuEntry.cs" />
  97. <Compile Include="Screens\MenuScreen.cs" />
  98. <Compile Include="Screens\MessageBoxScreen.cs" />
  99. <Compile Include="Networking\NetworkBusyScreen.cs" />
  100. <Compile Include="Networking\NetworkErrorScreen.cs" />
  101. <Compile Include="MessageDisplayComponent.cs" />
  102. <Compile Include="Screens\PauseMenuScreen.cs" />
  103. <Compile Include="Networking\ProfileSignInScreen.cs" />
  104. <Compile Include="Screens\PlayerIndexEventArgs.cs" />
  105. </ItemGroup>
  106. <ItemGroup>
  107. <Content Include="Game.ico" />
  108. <Content Include="NetworkStateManagement.png" />
  109. </ItemGroup>
  110. <ItemGroup>
  111. <NestedContentProject Include="Content\Content.contentproj">
  112. <Project>5e2f601c-a919-414a-aecd-cd1f837f9465</Project>
  113. <Visible>False</Visible>
  114. </NestedContentProject>
  115. </ItemGroup>
  116. <ItemGroup>
  117. <EmbeddedResource Include="Resources.resx">
  118. <SubType>Designer</SubType>
  119. <Generator>ResXFileCodeGenerator</Generator>
  120. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  121. </EmbeddedResource>
  122. </ItemGroup>
  123. <ItemGroup>
  124. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  125. <Visible>False</Visible>
  126. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  127. <Install>false</Install>
  128. </BootstrapperPackage>
  129. <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
  130. <Visible>False</Visible>
  131. <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
  132. <Install>false</Install>
  133. </BootstrapperPackage>
  134. <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
  135. <Visible>False</Visible>
  136. <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
  137. <Install>false</Install>
  138. </BootstrapperPackage>
  139. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
  140. <Visible>False</Visible>
  141. <ProductName>.NET Framework 3.5</ProductName>
  142. <Install>true</Install>
  143. </BootstrapperPackage>
  144. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  145. <Visible>False</Visible>
  146. <ProductName>.NET Framework 3.5 SP1</ProductName>
  147. <Install>false</Install>
  148. </BootstrapperPackage>
  149. <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
  150. <Visible>False</Visible>
  151. <ProductName>Windows Installer 3.1</ProductName>
  152. <Install>true</Install>
  153. </BootstrapperPackage>
  154. <BootstrapperPackage Include="Microsoft.Xna.Framework.3.0">
  155. <Visible>False</Visible>
  156. <ProductName>Microsoft XNA Framework Redistributable 3.0</ProductName>
  157. <Install>true</Install>
  158. </BootstrapperPackage>
  159. <BootstrapperPackage Include="Microsoft.Xna.Framework.4.0">
  160. <Visible>False</Visible>
  161. <ProductName>Microsoft XNA Framework Redistributable 4.0</ProductName>
  162. <Install>true</Install>
  163. </BootstrapperPackage>
  164. </ItemGroup>
  165. <ItemGroup />
  166. <ItemGroup>
  167. <Reference Include="Microsoft.Xna.Framework">
  168. <Private>False</Private>
  169. </Reference>
  170. <Reference Include="Microsoft.Xna.Framework.Avatar">
  171. <Private>False</Private>
  172. </Reference>
  173. <Reference Include="Microsoft.Xna.Framework.Game">
  174. <Private>False</Private>
  175. </Reference>
  176. <Reference Include="Microsoft.Xna.Framework.GamerServices">
  177. <Private>False</Private>
  178. </Reference>
  179. <Reference Include="Microsoft.Xna.Framework.Graphics">
  180. <Private>False</Private>
  181. </Reference>
  182. <Reference Include="Microsoft.Xna.Framework.Input.Touch">
  183. <Private>False</Private>
  184. </Reference>
  185. <Reference Include="Microsoft.Xna.Framework.Net">
  186. <Private>False</Private>
  187. </Reference>
  188. <Reference Include="Microsoft.Xna.Framework.Storage">
  189. <Private>False</Private>
  190. </Reference>
  191. <Reference Include="Microsoft.Xna.Framework.Video">
  192. <Private>False</Private>
  193. </Reference>
  194. <Reference Include="Microsoft.Xna.Framework.Xact">
  195. <Private>False</Private>
  196. </Reference>
  197. <Reference Include="mscorlib">
  198. <Private>False</Private>
  199. </Reference>
  200. <Reference Include="System">
  201. <Private>False</Private>
  202. </Reference>
  203. <Reference Include="System.Core">
  204. <Private>False</Private>
  205. </Reference>
  206. <Reference Include="System.Xml.Linq">
  207. <Private>False</Private>
  208. </Reference>
  209. </ItemGroup>
  210. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  211. <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.targets" Condition="" />
  212. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  213. Other similar extension points exist, see Microsoft.Common.targets.
  214. <Target Name="BeforeBuild">
  215. </Target>
  216. <Target Name="AfterBuild">
  217. </Target>
  218. -->
  219. </Project>