CatapaultNetWars.Windows.csproj 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{0BCF8950-A28D-4688-BA92-85BD49637ED0}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CatapaultNetWars</RootNamespace>
  12. <AssemblyName>CatapaultNetWars</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  15. <FileAlignment>512</FileAlignment>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  18. <PlatformTarget>x86</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>TRACE;DEBUG;WINDOWS</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  28. <PlatformTarget>x86</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE;WINDOWS</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. <Reference Include="System.Xml.Linq" />
  40. <Reference Include="System.Data.DataSetExtensions" />
  41. <Reference Include="Microsoft.CSharp" />
  42. <Reference Include="System.Data" />
  43. <Reference Include="System.Xml" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="Properties\AssemblyInfo.cs" />
  47. <Compile Include="CatapultGame.cs">
  48. </Compile>
  49. <Compile Include="Utility\Animation.cs">
  50. </Compile>
  51. <Compile Include="Utility\AudioManager.cs">
  52. </Compile>
  53. <Compile Include="Screens\BackgroundScreen.cs">
  54. </Compile>
  55. <Compile Include="Screens\GameplayScreen.cs">
  56. </Compile>
  57. <Compile Include="Screens\InstructionsScreen.cs">
  58. </Compile>
  59. <Compile Include="Screens\LoadingScreen.cs">
  60. </Compile>
  61. <Compile Include="Screens\MainMenuScreen.cs">
  62. </Compile>
  63. <Compile Include="Screens\MessageBoxScreen.cs">
  64. </Compile>
  65. <Compile Include="Screens\PauseScreen.cs">
  66. </Compile>
  67. <Compile Include="ScreenManager\GameScreen.cs">
  68. </Compile>
  69. <Compile Include="ScreenManager\InputState.cs">
  70. </Compile>
  71. <Compile Include="ScreenManager\MenuEntry.cs">
  72. </Compile>
  73. <Compile Include="ScreenManager\MenuScreen.cs">
  74. </Compile>
  75. <Compile Include="ScreenManager\MouseGestureType.cs">
  76. </Compile>
  77. <Compile Include="ScreenManager\PlayerIndexEventArgs.cs">
  78. </Compile>
  79. <Compile Include="ScreenManager\ScreenManager.cs">
  80. </Compile>
  81. <Compile Include="Players\AI.cs">
  82. </Compile>
  83. <Compile Include="Players\Human.cs">
  84. </Compile>
  85. <Compile Include="Players\Player.cs">
  86. </Compile>
  87. <Compile Include="Networking\AvailableSessionMenuEntry.cs">
  88. </Compile>
  89. <Compile Include="Networking\CreateOrFindSessionScreen.cs">
  90. </Compile>
  91. <Compile Include="Networking\JoinSessionScreen.cs">
  92. </Compile>
  93. <Compile Include="Networking\LobbyScreen.cs">
  94. </Compile>
  95. <Compile Include="Networking\NetworkBusyScreen.cs">
  96. </Compile>
  97. <Compile Include="Networking\NetworkErrorScreen.cs">
  98. </Compile>
  99. <Compile Include="Networking\NetworkSessionComponent.cs">
  100. </Compile>
  101. <Compile Include="Networking\OperationCompletedEventArgs.cs">
  102. </Compile>
  103. <Compile Include="Networking\ProfileSignInScreen.cs">
  104. </Compile>
  105. <Compile Include="Catapult\Catapult.cs">
  106. </Compile>
  107. <Compile Include="Catapult\Projectile.cs">
  108. </Compile>
  109. <Compile Include="IMessageDisplay.cs">
  110. </Compile>
  111. <Compile Include="MessageDisplayComponent.cs">
  112. </Compile>
  113. <Compile Include="Program.cs" />
  114. <Compile Include="Properties\Resources.Designer.cs">
  115. <AutoGen>True</AutoGen>
  116. <DesignTime>True</DesignTime>
  117. <DependentUpon>Resources.resx</DependentUpon>
  118. </Compile>
  119. </ItemGroup>
  120. <ItemGroup>
  121. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.WindowsGL.csproj">
  122. <Project>{7DE47032-A904-4C29-BD22-2D235E8D91BA}</Project>
  123. <Name>MonoGame.Framework.WindowsGL</Name>
  124. </ProjectReference>
  125. <ProjectReference Include="..\..\ThirdParty\Lidgren.Network\Lidgren.Network.Windows.csproj">
  126. <Project>{AE483C29-042E-4226-BA52-D247CE7676DA}</Project>
  127. <Name>Lidgren.Network.Windows</Name>
  128. </ProjectReference>
  129. </ItemGroup>
  130. <ItemGroup>
  131. <Content Include="Content\Fonts\HUDFont.xnb">
  132. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  133. </Content>
  134. <Content Include="Content\Fonts\MenuFont.xnb">
  135. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  136. </Content>
  137. <Content Include="Content\Textures\Ammo\rock_ammo.xnb">
  138. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  139. </Content>
  140. <Content Include="Content\Textures\Backgrounds\blank.xnb">
  141. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  142. </Content>
  143. <Content Include="Content\Textures\Backgrounds\cloud1.xnb">
  144. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  145. </Content>
  146. <Content Include="Content\Textures\Backgrounds\cloud2.xnb">
  147. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  148. </Content>
  149. <Content Include="Content\Textures\Backgrounds\defeat.xnb">
  150. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  151. </Content>
  152. <Content Include="Content\Textures\Backgrounds\gameplay_screen.xnb">
  153. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  154. </Content>
  155. <Content Include="Content\Textures\Backgrounds\instructions.xnb">
  156. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  157. </Content>
  158. <Content Include="Content\Textures\Backgrounds\mountain.xnb">
  159. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  160. </Content>
  161. <Content Include="Content\Textures\Backgrounds\sky.xnb">
  162. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  163. </Content>
  164. <Content Include="Content\Textures\Backgrounds\title_screen.xnb">
  165. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  166. </Content>
  167. <Content Include="Content\Textures\Backgrounds\victory.xnb">
  168. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  169. </Content>
  170. <Content Include="Content\Textures\HUD\ammoType.xnb">
  171. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  172. </Content>
  173. <Content Include="Content\Textures\HUD\Arrow.xnb">
  174. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  175. </Content>
  176. <Content Include="Content\Textures\HUD\hudBackground.xnb">
  177. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  178. </Content>
  179. <Content Include="Content\Textures\HUD\windArrow.xnb">
  180. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  181. </Content>
  182. <Content Include="Content\Textures\Catapults\AnimationsDef.xml">
  183. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  184. </Content>
  185. <Content Include="Content\Textures\Catapults\Fire_Miss\fire_miss.xnb">
  186. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  187. </Content>
  188. <Content Include="Content\Textures\Catapults\Hit_Smoke\smoke.xnb">
  189. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  190. </Content>
  191. <Content Include="Content\Textures\Catapults\Blue\blueDestroyed\blueCatapult_destroyed.xnb">
  192. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  193. </Content>
  194. <Content Include="Content\Textures\Catapults\Blue\blueFire\blueCatapult_fire.xnb">
  195. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  196. </Content>
  197. <Content Include="Content\Textures\Catapults\Blue\blueIdle\blueIdle.xnb">
  198. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  199. </Content>
  200. <Content Include="Content\Textures\Catapults\Blue\bluePullback\blueCatapult_Pullback.xnb">
  201. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  202. </Content>
  203. <Content Include="Content\Textures\Catapults\Red\redDestroyed\redCatapult_destroyed.xnb">
  204. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  205. </Content>
  206. <Content Include="Content\Textures\Catapults\Red\redFire\redCatapult_fire.xnb">
  207. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  208. </Content>
  209. <Content Include="Content\Textures\Catapults\Red\redIdle\redIdle.xnb">
  210. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  211. </Content>
  212. <Content Include="Content\Textures\Catapults\Red\redPullback\redCatapult_Pullback.xnb">
  213. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  214. </Content>
  215. <Content Include="Content\cat.xnb">
  216. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  217. </Content>
  218. <Content Include="Content\chat_able.xnb">
  219. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  220. </Content>
  221. <Content Include="Content\chat_mute.xnb">
  222. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  223. </Content>
  224. <Content Include="Content\chat_ready.xnb">
  225. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  226. </Content>
  227. <Content Include="Content\chat_talking.xnb">
  228. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  229. </Content>
  230. <Content Include="Content\gradient.xnb">
  231. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  232. </Content>
  233. </ItemGroup>
  234. <ItemGroup>
  235. <EmbeddedResource Include="Properties\Resources.resx">
  236. <Generator>ResXFileCodeGenerator</Generator>
  237. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  238. </EmbeddedResource>
  239. </ItemGroup>
  240. <ItemGroup />
  241. <ItemGroup>
  242. <Content Include="Content\Sounds\BoulderHit.xnb">
  243. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  244. </Content>
  245. <Content Include="Content\Sounds\CatapultExplosion.xnb">
  246. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  247. </Content>
  248. <Content Include="Content\Sounds\CatapultFire.xnb">
  249. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  250. </Content>
  251. <Content Include="Content\Sounds\Lose.xnb">
  252. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  253. </Content>
  254. <Content Include="Content\Sounds\RopeStretch.xnb">
  255. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  256. </Content>
  257. <Content Include="Content\Sounds\Win.xnb">
  258. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  259. </Content>
  260. </ItemGroup>
  261. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  262. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  263. Other similar extension points exist, see Microsoft.Common.targets.
  264. <Target Name="BeforeBuild">
  265. </Target>
  266. <Target Name="AfterBuild">
  267. </Target>
  268. -->
  269. </Project>