NetworkPredictionXbox.csproj 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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>{17954341-62EA-48A8-B97E-E40976F3E45B}</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>NetworkPrediction</RootNamespace>
  11. <AssemblyName>NetworkPrediction</AssemblyName>
  12. <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
  13. <XnaPlatform>Xbox 360</XnaPlatform>
  14. <XnaCrossPlatformGroupID>c6c966f0-3285-4ad2-a41f-77d2593527dc</XnaCrossPlatformGroupID>
  15. <ApplicationIcon>Game.ico</ApplicationIcon>
  16. <Thumbnail>NetworkPrediction.png</Thumbnail>
  17. <XnaUpgrade>
  18. </XnaUpgrade>
  19. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  20. <FileUpgradeFlags>
  21. </FileUpgradeFlags>
  22. <UpgradeBackupLocation>
  23. </UpgradeBackupLocation>
  24. <OldToolsVersion>3.5</OldToolsVersion>
  25. <XnaOutputType>Game</XnaOutputType>
  26. <XnaProfile>Reach</XnaProfile>
  27. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  28. <PublishUrl>publish\</PublishUrl>
  29. <Install>true</Install>
  30. <InstallFrom>Disk</InstallFrom>
  31. <UpdateEnabled>false</UpdateEnabled>
  32. <UpdateMode>Foreground</UpdateMode>
  33. <UpdateInterval>7</UpdateInterval>
  34. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  35. <UpdatePeriodically>false</UpdatePeriodically>
  36. <UpdateRequired>false</UpdateRequired>
  37. <MapFileExtensions>true</MapFileExtensions>
  38. <ApplicationRevision>0</ApplicationRevision>
  39. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  40. <IsWebBootstrapper>false</IsWebBootstrapper>
  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\NetworkPredictionContent.contentproj">
  69. <Project>{44D6E134-0D38-4B3C-89A1-1C70C093FAE0}</Project>
  70. <Name>NetworkPredictionContent %28Content%29</Name>
  71. <XnaReferenceType>Content</XnaReferenceType>
  72. </ProjectReference>
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Compile Include="NetworkPredictionGame.cs" />
  76. <Compile Include="Properties\AssemblyInfo.cs" />
  77. <Compile Include="RollingAverage.cs" />
  78. <Compile Include="Tank.cs" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <Content Include="Game.ico" />
  82. <Content Include="NetworkPrediction.png" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <NestedContentProject Include="Content\Content.contentproj">
  86. <Project>44d6e134-0d38-4b3c-89a1-1c70c093fae0</Project>
  87. <Visible>False</Visible>
  88. </NestedContentProject>
  89. </ItemGroup>
  90. <ItemGroup />
  91. <ItemGroup>
  92. <BootstrapperPackage Include=".NETFramework,Version=v4.0,Profile=Client">
  93. <Visible>False</Visible>
  94. <ProductName>Microsoft .NET Framework 4 Client Profile %28x86 and x64%29</ProductName>
  95. <Install>true</Install>
  96. </BootstrapperPackage>
  97. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  98. <Visible>False</Visible>
  99. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  100. <Install>false</Install>
  101. </BootstrapperPackage>
  102. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  103. <Visible>False</Visible>
  104. <ProductName>.NET Framework 3.5 SP1</ProductName>
  105. <Install>false</Install>
  106. </BootstrapperPackage>
  107. <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
  108. <Visible>False</Visible>
  109. <ProductName>Windows Installer 3.1</ProductName>
  110. <Install>true</Install>
  111. </BootstrapperPackage>
  112. <BootstrapperPackage Include="Microsoft.Xna.Framework.4.0">
  113. <Visible>False</Visible>
  114. <ProductName>Microsoft XNA Framework Redistributable 4.0</ProductName>
  115. <Install>true</Install>
  116. </BootstrapperPackage>
  117. </ItemGroup>
  118. <ItemGroup>
  119. <Reference Include="Microsoft.Xna.Framework">
  120. <Private>False</Private>
  121. </Reference>
  122. <Reference Include="Microsoft.Xna.Framework.Avatar">
  123. <Private>False</Private>
  124. </Reference>
  125. <Reference Include="Microsoft.Xna.Framework.Game">
  126. <Private>False</Private>
  127. </Reference>
  128. <Reference Include="Microsoft.Xna.Framework.GamerServices">
  129. <Private>False</Private>
  130. </Reference>
  131. <Reference Include="Microsoft.Xna.Framework.Graphics">
  132. <Private>False</Private>
  133. </Reference>
  134. <Reference Include="Microsoft.Xna.Framework.Input.Touch">
  135. <Private>False</Private>
  136. </Reference>
  137. <Reference Include="Microsoft.Xna.Framework.Net">
  138. <Private>False</Private>
  139. </Reference>
  140. <Reference Include="Microsoft.Xna.Framework.Storage">
  141. <Private>False</Private>
  142. </Reference>
  143. <Reference Include="Microsoft.Xna.Framework.Video">
  144. <Private>False</Private>
  145. </Reference>
  146. <Reference Include="Microsoft.Xna.Framework.Xact">
  147. <Private>False</Private>
  148. </Reference>
  149. <Reference Include="mscorlib">
  150. <Private>False</Private>
  151. </Reference>
  152. <Reference Include="System">
  153. <Private>False</Private>
  154. </Reference>
  155. <Reference Include="System.Xml.Linq">
  156. <Private>False</Private>
  157. </Reference>
  158. </ItemGroup>
  159. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  160. <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.targets" Condition="" />
  161. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  162. Other similar extension points exist, see Microsoft.Common.targets.
  163. <Target Name="BeforeBuild">
  164. </Target>
  165. <Target Name="AfterBuild">
  166. </Target>
  167. -->
  168. </Project>