NetRumble.Windows.csproj 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
  3. <PropertyGroup>
  4. <ProjectGuid>{36CDED1D-BE90-4C12-BC0A-F923AB92B98D}</ProjectGuid>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  7. <OutputType>WinExe</OutputType>
  8. <RootNamespace>NetRumble</RootNamespace>
  9. <AssemblyName>NetRumble</AssemblyName>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <ProductVersion>10.0.0</ProductVersion>
  12. <SchemaVersion>2.0</SchemaVersion>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Platform)' == 'x86' ">
  15. <PlatformTarget>x86</PlatformTarget>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  18. <OutputPath>bin\Debug\</OutputPath>
  19. <DebugSymbols>True</DebugSymbols>
  20. <DebugType>Full</DebugType>
  21. <Optimize>False</Optimize>
  22. <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  26. <OutputPath>bin\Release\</OutputPath>
  27. <DebugSymbols>False</DebugSymbols>
  28. <DebugType>None</DebugType>
  29. <Optimize>True</Optimize>
  30. <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
  31. <DefineConstants>TRACE</DefineConstants>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  34. <WarningLevel>4</WarningLevel>
  35. <DefineConstants>TRACE;DEBUG;WINDOWS</DefineConstants>
  36. </PropertyGroup>
  37. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  38. <WarningLevel>4</WarningLevel>
  39. </PropertyGroup>
  40. <PropertyGroup>
  41. <StartupObject />
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="System" />
  45. <Reference Include="System.Core">
  46. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  47. </Reference>
  48. <Reference Include="System.Data" />
  49. <Reference Include="System.Data.DataSetExtensions">
  50. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  51. </Reference>
  52. <Reference Include="System.Drawing" />
  53. <Reference Include="System.Xml" />
  54. <Reference Include="System.Xml.Linq">
  55. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  56. </Reference>
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Compile Include="AudioManager.cs">
  60. </Compile>
  61. <Compile Include="BatchRemovalCollection.cs">
  62. </Compile>
  63. <Compile Include="BloomPostprocess\BloomComponent.cs">
  64. </Compile>
  65. <Compile Include="BloomPostprocess\BloomSettings.cs">
  66. </Compile>
  67. <Compile Include="CollisionMath.cs">
  68. </Compile>
  69. <Compile Include="Gameplay\Asteroid.cs">
  70. </Compile>
  71. <Compile Include="Gameplay\CollisionManager.cs">
  72. </Compile>
  73. <Compile Include="Gameplay\GameplayObject.cs">
  74. </Compile>
  75. <Compile Include="Gameplay\PlayerData.cs">
  76. </Compile>
  77. <Compile Include="Gameplay\PowerUps\DoubleLaserPowerUp.cs">
  78. </Compile>
  79. <Compile Include="Gameplay\PowerUps\PowerUp.cs">
  80. </Compile>
  81. <Compile Include="Gameplay\PowerUps\RocketPowerUp.cs">
  82. </Compile>
  83. <Compile Include="Gameplay\PowerUps\TripleLaserPowerUp.cs">
  84. </Compile>
  85. <Compile Include="Gameplay\Projectiles\LaserProjectile.cs">
  86. </Compile>
  87. <Compile Include="Gameplay\Projectiles\MineProjectile.cs">
  88. </Compile>
  89. <Compile Include="Gameplay\Projectiles\Projectile.cs">
  90. </Compile>
  91. <Compile Include="Gameplay\Projectiles\RocketProjectile.cs">
  92. </Compile>
  93. <Compile Include="Gameplay\Ship.cs">
  94. </Compile>
  95. <Compile Include="Gameplay\ShipInput.cs">
  96. </Compile>
  97. <Compile Include="Gameplay\Weapons\DoubleLaserWeapon.cs">
  98. </Compile>
  99. <Compile Include="Gameplay\Weapons\LaserWeapon.cs">
  100. </Compile>
  101. <Compile Include="Gameplay\Weapons\MineWeapon.cs">
  102. </Compile>
  103. <Compile Include="Gameplay\Weapons\RocketWeapon.cs">
  104. </Compile>
  105. <Compile Include="Gameplay\Weapons\TripleLaserWeapon.cs">
  106. </Compile>
  107. <Compile Include="Gameplay\Weapons\Weapon.cs">
  108. </Compile>
  109. <Compile Include="Gameplay\World.cs">
  110. </Compile>
  111. <Compile Include="NetRumbleGame.cs">
  112. </Compile>
  113. <Compile Include="OperationCompletedEventArgs.cs">
  114. </Compile>
  115. <Compile Include="RandomMath.cs">
  116. </Compile>
  117. <Compile Include="Rendering\Particles\Particle.cs">
  118. </Compile>
  119. <Compile Include="Rendering\Particles\ParticleCache.cs">
  120. </Compile>
  121. <Compile Include="Rendering\Particles\ParticleEffect.cs">
  122. </Compile>
  123. <Compile Include="Rendering\Particles\ParticleEffectManager.cs">
  124. </Compile>
  125. <Compile Include="Rendering\Particles\ParticleEffectType.cs">
  126. </Compile>
  127. <Compile Include="Rendering\Particles\ParticleSystem.cs">
  128. </Compile>
  129. <Compile Include="Rendering\Starfield.cs">
  130. </Compile>
  131. <Compile Include="ScreenManager\GameScreen.cs">
  132. </Compile>
  133. <Compile Include="ScreenManager\InputState.cs">
  134. </Compile>
  135. <Compile Include="ScreenManager\LoadingScreen.cs">
  136. </Compile>
  137. <Compile Include="ScreenManager\MenuScreen.cs">
  138. </Compile>
  139. <Compile Include="ScreenManager\MessageBoxScreen.cs">
  140. </Compile>
  141. <Compile Include="ScreenManager\ScreenManager.cs">
  142. </Compile>
  143. <Compile Include="Screens\BackgroundScreen.cs">
  144. </Compile>
  145. <Compile Include="Screens\GameplayScreen.cs">
  146. </Compile>
  147. <Compile Include="Screens\LobbyScreen.cs">
  148. </Compile>
  149. <Compile Include="Screens\MainMenuScreen.cs">
  150. </Compile>
  151. <Compile Include="Screens\NetworkBusyScreen.cs">
  152. </Compile>
  153. <Compile Include="Screens\SearchResultsScreen.cs">
  154. </Compile>
  155. <Compile Include="Program.cs" />
  156. <Compile Include="Properties\AssemblyInfo.cs" />
  157. </ItemGroup>
  158. <ItemGroup>
  159. <Content Include="..\..\ThirdParty\GamepadConfig\SDL.dll">
  160. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  161. </Content>
  162. <Content Include="Content\Audio\wav\asteroid_touch.xnb">
  163. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  164. </Content>
  165. <Content Include="Content\Audio\wav\explosion_large.xnb">
  166. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  167. </Content>
  168. <Content Include="Content\Audio\wav\explosion_medium.xnb">
  169. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  170. </Content>
  171. <Content Include="Content\Audio\wav\explosion_shockwave.xnb">
  172. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  173. </Content>
  174. <Content Include="Content\Audio\wav\fire_laser1.xnb">
  175. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  176. </Content>
  177. <Content Include="Content\Audio\wav\fire_laser2.xnb">
  178. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  179. </Content>
  180. <Content Include="Content\Audio\wav\fire_laser3.xnb">
  181. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  182. </Content>
  183. <Content Include="Content\Audio\wav\fire_rocket1.xnb">
  184. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  185. </Content>
  186. <Content Include="Content\Audio\wav\fire_rocket2.xnb">
  187. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  188. </Content>
  189. <Content Include="Content\Audio\wav\menu_scroll.xnb">
  190. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  191. </Content>
  192. <Content Include="Content\Audio\wav\menu_select.xnb">
  193. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  194. </Content>
  195. <Content Include="Content\Audio\wav\player_spawn.xnb">
  196. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  197. </Content>
  198. <Content Include="Content\Audio\wav\powerup_spawn.xnb">
  199. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  200. </Content>
  201. <Content Include="Content\Audio\wav\powerup_touch.xnb">
  202. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  203. </Content>
  204. <Content Include="Content\Audio\wav\rocket.xnb">
  205. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  206. </Content>
  207. <Content Include="Content\Fonts\MenuFont.xnb">
  208. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  209. </Content>
  210. <Content Include="Content\Fonts\MessageBox.xnb">
  211. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  212. </Content>
  213. <Content Include="Content\Fonts\NetRumbleFont.xnb">
  214. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  215. </Content>
  216. <Content Include="Content\One Step Beyond.wma">
  217. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  218. </Content>
  219. <Content Include="Content\Particles\laserExplosion.xml">
  220. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  221. </Content>
  222. <Content Include="Content\Particles\mineExplosion.xml">
  223. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  224. </Content>
  225. <Content Include="Content\Particles\rocketExplosion.xml">
  226. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  227. </Content>
  228. <Content Include="Content\Particles\rocketTrail.xml">
  229. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  230. </Content>
  231. <Content Include="Content\Particles\shipExplosion.xml">
  232. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  233. </Content>
  234. <Content Include="Content\Particles\shipSpawn.xml">
  235. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  236. </Content>
  237. <Content Include="Content\Textures\asteroid0.xnb">
  238. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  239. </Content>
  240. <Content Include="Content\Textures\asteroid1.xnb">
  241. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  242. </Content>
  243. <Content Include="Content\Textures\asteroid2.xnb">
  244. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  245. </Content>
  246. <Content Include="Content\Textures\barrierEnd.xnb">
  247. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  248. </Content>
  249. <Content Include="Content\Textures\barrierPurple.xnb">
  250. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  251. </Content>
  252. <Content Include="Content\Textures\barrierRed.xnb">
  253. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  254. </Content>
  255. <Content Include="Content\Textures\blank.xnb">
  256. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  257. </Content>
  258. <Content Include="Content\Textures\chatAble.xnb">
  259. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  260. </Content>
  261. <Content Include="Content\Textures\chatMute.xnb">
  262. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  263. </Content>
  264. <Content Include="Content\Textures\chatTalking.xnb">
  265. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  266. </Content>
  267. <Content Include="Content\Textures\clouds.xnb">
  268. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  269. </Content>
  270. <Content Include="Content\Textures\explosion.xnb">
  271. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  272. </Content>
  273. <Content Include="Content\Textures\laser.xnb">
  274. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  275. </Content>
  276. <Content Include="Content\Textures\mine.xnb">
  277. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  278. </Content>
  279. <Content Include="Content\Textures\powerupDoubleLaser.xnb">
  280. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  281. </Content>
  282. <Content Include="Content\Textures\powerupRocket.xnb">
  283. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  284. </Content>
  285. <Content Include="Content\Textures\powerupTripleLaser.xnb">
  286. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  287. </Content>
  288. <Content Include="Content\Textures\ready.xnb">
  289. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  290. </Content>
  291. <Content Include="Content\Textures\rocket.xnb">
  292. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  293. </Content>
  294. <Content Include="Content\Textures\ship0.xnb">
  295. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  296. </Content>
  297. <Content Include="Content\Textures\ship0Overlay.xnb">
  298. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  299. </Content>
  300. <Content Include="Content\Textures\ship1.xnb">
  301. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  302. </Content>
  303. <Content Include="Content\Textures\ship1Overlay.xnb">
  304. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  305. </Content>
  306. <Content Include="Content\Textures\ship2.xnb">
  307. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  308. </Content>
  309. <Content Include="Content\Textures\ship2Overlay.xnb">
  310. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  311. </Content>
  312. <Content Include="Content\Textures\ship3.xnb">
  313. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  314. </Content>
  315. <Content Include="Content\Textures\ship3Overlay.xnb">
  316. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  317. </Content>
  318. <Content Include="Content\Textures\shipShields.xnb">
  319. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  320. </Content>
  321. <Content Include="Content\Textures\title.xnb">
  322. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  323. </Content>
  324. <Content Include="Content\Textures\Particles\defaultParticle.xnb">
  325. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  326. </Content>
  327. <Content Include="Content\Textures\Particles\particle.xnb">
  328. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  329. </Content>
  330. <Content Include="Content\Textures\Particles\smoke.xnb">
  331. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  332. </Content>
  333. <Content Include="Content\Textures\Particles\spark.xnb">
  334. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  335. </Content>
  336. <Content Include="..\CompiledContent\Windows\Content\Effects\Clouds.xnb">
  337. <Link>Content\Effects\Clouds.xnb</Link>
  338. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  339. </Content>
  340. <Content Include="..\CompiledContent\Windows\Content\Effects\BloomCombine.xnb">
  341. <Link>Content\BloomPostprocess\Effects\BloomCombine.xnb</Link>
  342. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  343. </Content>
  344. <Content Include="..\CompiledContent\Windows\Content\Effects\BloomExtract.xnb">
  345. <Link>Content\BloomPostprocess\Effects\BloomExtract.xnb</Link>
  346. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  347. </Content>
  348. <Content Include="..\CompiledContent\Windows\Content\Effects\GaussianBlur.xnb">
  349. <Link>Content\BloomPostprocess\Effects\GaussianBlur.xnb</Link>
  350. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  351. </Content>
  352. <None Include="app.config" />
  353. </ItemGroup>
  354. <ItemGroup>
  355. <Folder Include="Effects\" />
  356. </ItemGroup>
  357. <ItemGroup>
  358. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.WindowsGL.csproj">
  359. <Project>{7DE47032-A904-4C29-BD22-2D235E8D91BA}</Project>
  360. <Name>MonoGame.Framework.WindowsGL</Name>
  361. </ProjectReference>
  362. <ProjectReference Include="..\..\ThirdParty\Lidgren.Network\Lidgren.Network.Windows.csproj">
  363. <Project>{AE483C29-042E-4226-BA52-D247CE7676DA}</Project>
  364. <Name>Lidgren.Network.Windows</Name>
  365. </ProjectReference>
  366. </ItemGroup>
  367. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
  368. </Project>