CatapultNetWars.Linux.csproj 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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>CatapultNetWars</RootNamespace>
  12. <AssemblyName>CatapultNetWars</AssemblyName>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  16. <PlatformTarget>x86</PlatformTarget>
  17. <DebugSymbols>True</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>False</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>TRACE;DEBUG;LINUX</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  26. <PlatformTarget>x86</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>True</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE;LINUX</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Core" />
  37. <Reference Include="System.Xml.Linq" />
  38. <Reference Include="System.Data.DataSetExtensions" />
  39. <Reference Include="Microsoft.CSharp" />
  40. <Reference Include="System.Data" />
  41. <Reference Include="System.Xml" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="Properties\AssemblyInfo.cs" />
  45. <Compile Include="CatapultGame.cs">
  46. <Link>CatapultGame.cs</Link>
  47. </Compile>
  48. <Compile Include="Utility\Animation.cs">
  49. <Link>Utility\Animation.cs</Link>
  50. </Compile>
  51. <Compile Include="Utility\AudioManager.cs">
  52. <Link>Utility\AudioManager.cs</Link>
  53. </Compile>
  54. <Compile Include="Screens\BackgroundScreen.cs">
  55. <Link>Screens\BackgroundScreen.cs</Link>
  56. </Compile>
  57. <Compile Include="Screens\GameplayScreen.cs">
  58. <Link>Screens\GameplayScreen.cs</Link>
  59. </Compile>
  60. <Compile Include="Screens\InstructionsScreen.cs">
  61. <Link>Screens\InstructionsScreen.cs</Link>
  62. </Compile>
  63. <Compile Include="Screens\LoadingScreen.cs">
  64. <Link>Screens\LoadingScreen.cs</Link>
  65. </Compile>
  66. <Compile Include="Screens\MainMenuScreen.cs">
  67. <Link>Screens\MainMenuScreen.cs</Link>
  68. </Compile>
  69. <Compile Include="Screens\MessageBoxScreen.cs">
  70. <Link>Screens\MessageBoxScreen.cs</Link>
  71. </Compile>
  72. <Compile Include="Screens\PauseScreen.cs">
  73. <Link>Screens\PauseScreen.cs</Link>
  74. </Compile>
  75. <Compile Include="ScreenManager\GameScreen.cs">
  76. <Link>ScreenManager\GameScreen.cs</Link>
  77. </Compile>
  78. <Compile Include="ScreenManager\InputState.cs">
  79. <Link>ScreenManager\InputState.cs</Link>
  80. </Compile>
  81. <Compile Include="ScreenManager\MenuEntry.cs">
  82. <Link>ScreenManager\MenuEntry.cs</Link>
  83. </Compile>
  84. <Compile Include="ScreenManager\MenuScreen.cs">
  85. <Link>ScreenManager\MenuScreen.cs</Link>
  86. </Compile>
  87. <Compile Include="ScreenManager\MouseGestureType.cs">
  88. <Link>ScreenManager\MouseGestureType.cs</Link>
  89. </Compile>
  90. <Compile Include="ScreenManager\PlayerIndexEventArgs.cs">
  91. <Link>ScreenManager\PlayerIndexEventArgs.cs</Link>
  92. </Compile>
  93. <Compile Include="ScreenManager\ScreenManager.cs">
  94. <Link>ScreenManager\ScreenManager.cs</Link>
  95. </Compile>
  96. <Compile Include="Players\AI.cs">
  97. <Link>Players\AI.cs</Link>
  98. </Compile>
  99. <Compile Include="Players\Human.cs">
  100. <Link>Players\Human.cs</Link>
  101. </Compile>
  102. <Compile Include="Players\Player.cs">
  103. <Link>Players\Player.cs</Link>
  104. </Compile>
  105. <Compile Include="Networking\AvailableSessionMenuEntry.cs">
  106. <Link>Networking\AvailableSessionMenuEntry.cs</Link>
  107. </Compile>
  108. <Compile Include="Networking\CreateOrFindSessionScreen.cs">
  109. <Link>Networking\CreateOrFindSessionScreen.cs</Link>
  110. </Compile>
  111. <Compile Include="Networking\JoinSessionScreen.cs">
  112. <Link>Networking\JoinSessionScreen.cs</Link>
  113. </Compile>
  114. <Compile Include="Networking\LobbyScreen.cs">
  115. <Link>Networking\LobbyScreen.cs</Link>
  116. </Compile>
  117. <Compile Include="Networking\NetworkBusyScreen.cs">
  118. <Link>Networking\NetworkBusyScreen.cs</Link>
  119. </Compile>
  120. <Compile Include="Networking\NetworkErrorScreen.cs">
  121. <Link>Networking\NetworkErrorScreen.cs</Link>
  122. </Compile>
  123. <Compile Include="Networking\NetworkSessionComponent.cs">
  124. <Link>Networking\NetworkSessionComponent.cs</Link>
  125. </Compile>
  126. <Compile Include="Networking\OperationCompletedEventArgs.cs">
  127. <Link>Networking\OperationCompletedEventArgs.cs</Link>
  128. </Compile>
  129. <Compile Include="Networking\ProfileSignInScreen.cs">
  130. <Link>Networking\ProfileSignInScreen.cs</Link>
  131. </Compile>
  132. <Compile Include="Catapult\Catapult.cs">
  133. <Link>Catapult\Catapult.cs</Link>
  134. </Compile>
  135. <Compile Include="Catapult\Projectile.cs">
  136. <Link>Catapult\Projectile.cs</Link>
  137. </Compile>
  138. <Compile Include="IMessageDisplay.cs">
  139. <Link>IMessageDisplay.cs</Link>
  140. </Compile>
  141. <Compile Include="MessageDisplayComponent.cs">
  142. <Link>MessageDisplayComponent.cs</Link>
  143. </Compile>
  144. <Compile Include="Program.cs" />
  145. <Compile Include="Properties\Resources.Designer.cs">
  146. <AutoGen>True</AutoGen>
  147. <DesignTime>True</DesignTime>
  148. <DependentUpon>Resources.resx</DependentUpon>
  149. </Compile>
  150. </ItemGroup>
  151. <ItemGroup>
  152. <Content Include="Content\Fonts\HUDFont.xnb">
  153. <Link>Content\Fonts\HUDFont.xnb</Link>
  154. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  155. </Content>
  156. <Content Include="Content\Fonts\MenuFont.xnb">
  157. <Link>Content\Fonts\MenuFont.xnb</Link>
  158. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  159. </Content>
  160. <Content Include="Content\Textures\Ammo\rock_ammo.xnb">
  161. <Link>Content\Textures\Ammo\rock_ammo.xnb</Link>
  162. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  163. </Content>
  164. <Content Include="Content\Textures\Backgrounds\blank.xnb">
  165. <Link>Content\Textures\Backgrounds\blank.xnb</Link>
  166. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  167. </Content>
  168. <Content Include="Content\Textures\Backgrounds\cloud1.xnb">
  169. <Link>Content\Textures\Backgrounds\cloud1.xnb</Link>
  170. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  171. </Content>
  172. <Content Include="Content\Textures\Backgrounds\cloud2.xnb">
  173. <Link>Content\Textures\Backgrounds\cloud2.xnb</Link>
  174. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  175. </Content>
  176. <Content Include="Content\Textures\Backgrounds\defeat.xnb">
  177. <Link>Content\Textures\Backgrounds\defeat.xnb</Link>
  178. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  179. </Content>
  180. <Content Include="Content\Textures\Backgrounds\gameplay_screen.xnb">
  181. <Link>Content\Textures\Backgrounds\gameplay_screen.xnb</Link>
  182. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  183. </Content>
  184. <Content Include="Content\Textures\Backgrounds\instructions.xnb">
  185. <Link>Content\Textures\Backgrounds\instructions.xnb</Link>
  186. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  187. </Content>
  188. <Content Include="Content\Textures\Backgrounds\mountain.xnb">
  189. <Link>Content\Textures\Backgrounds\mountain.xnb</Link>
  190. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  191. </Content>
  192. <Content Include="Content\Textures\Backgrounds\sky.xnb">
  193. <Link>Content\Textures\Backgrounds\sky.xnb</Link>
  194. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  195. </Content>
  196. <Content Include="Content\Textures\Backgrounds\title_screen.xnb">
  197. <Link>Content\Textures\Backgrounds\title_screen.xnb</Link>
  198. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  199. </Content>
  200. <Content Include="Content\Textures\Backgrounds\victory.xnb">
  201. <Link>Content\Textures\Backgrounds\victory.xnb</Link>
  202. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  203. </Content>
  204. <Content Include="Content\Textures\HUD\ammoType.xnb">
  205. <Link>Content\Textures\HUD\ammoType.xnb</Link>
  206. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  207. </Content>
  208. <Content Include="Content\Textures\HUD\Arrow.xnb">
  209. <Link>Content\Textures\HUD\Arrow.xnb</Link>
  210. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  211. </Content>
  212. <Content Include="Content\Textures\HUD\hudBackground.xnb">
  213. <Link>Content\Textures\HUD\hudBackground.xnb</Link>
  214. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  215. </Content>
  216. <Content Include="Content\Textures\HUD\windArrow.xnb">
  217. <Link>Content\Textures\HUD\windArrow.xnb</Link>
  218. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  219. </Content>
  220. <Content Include="Content\Textures\Catapults\AnimationsDef.xml">
  221. <Link>Content\Textures\Catapults\AnimationsDef.xml</Link>
  222. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  223. </Content>
  224. <Content Include="Content\Textures\Catapults\Fire_Miss\fire_miss.xnb">
  225. <Link>Content\Textures\Catapults\Fire_Miss\fire_miss.xnb</Link>
  226. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  227. </Content>
  228. <Content Include="Content\Textures\Catapults\Hit_Smoke\smoke.xnb">
  229. <Link>Content\Textures\Catapults\Hit_Smoke\smoke.xnb</Link>
  230. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  231. </Content>
  232. <Content Include="Content\Textures\Catapults\Blue\blueDestroyed\blueCatapult_destroyed.xnb">
  233. <Link>Content\Textures\Catapults\Blue\blueDestroyed\blueCatapult_destroyed.xnb</Link>
  234. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  235. </Content>
  236. <Content Include="Content\Textures\Catapults\Blue\blueFire\blueCatapult_fire.xnb">
  237. <Link>Content\Textures\Catapults\Blue\blueFire\blueCatapult_fire.xnb</Link>
  238. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  239. </Content>
  240. <Content Include="Content\Textures\Catapults\Blue\blueIdle\blueIdle.xnb">
  241. <Link>Content\Textures\Catapults\Blue\blueIdle\blueIdle.xnb</Link>
  242. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  243. </Content>
  244. <Content Include="Content\Textures\Catapults\Blue\bluePullback\blueCatapult_Pullback.xnb">
  245. <Link>Content\Textures\Catapults\Blue\bluePullback\blueCatapult_Pullback.xnb</Link>
  246. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  247. </Content>
  248. <Content Include="Content\Textures\Catapults\Red\redDestroyed\redCatapult_destroyed.xnb">
  249. <Link>Content\Textures\Catapults\Red\redDestroyed\redCatapult_destroyed.xnb</Link>
  250. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  251. </Content>
  252. <Content Include="Content\Textures\Catapults\Red\redFire\redCatapult_fire.xnb">
  253. <Link>Content\Textures\Catapults\Red\redFire\redCatapult_fire.xnb</Link>
  254. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  255. </Content>
  256. <Content Include="Content\Textures\Catapults\Red\redIdle\redIdle.xnb">
  257. <Link>Content\Textures\Catapults\Red\redIdle\redIdle.xnb</Link>
  258. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  259. </Content>
  260. <Content Include="Content\Textures\Catapults\Red\redPullback\redCatapult_Pullback.xnb">
  261. <Link>Content\Textures\Catapults\Red\redPullback\redCatapult_Pullback.xnb</Link>
  262. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  263. </Content>
  264. <Content Include="Content\cat.xnb">
  265. <Link>Content\cat.xnb</Link>
  266. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  267. </Content>
  268. <Content Include="Content\chat_able.xnb">
  269. <Link>Content\chat_able.xnb</Link>
  270. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  271. </Content>
  272. <Content Include="Content\chat_mute.xnb">
  273. <Link>Content\chat_mute.xnb</Link>
  274. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  275. </Content>
  276. <Content Include="Content\chat_ready.xnb">
  277. <Link>Content\chat_ready.xnb</Link>
  278. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  279. </Content>
  280. <Content Include="Content\chat_talking.xnb">
  281. <Link>Content\chat_talking.xnb</Link>
  282. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  283. </Content>
  284. <Content Include="Content\gradient.xnb">
  285. <Link>Content\gradient.xnb</Link>
  286. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  287. </Content>
  288. </ItemGroup>
  289. <ItemGroup>
  290. <EmbeddedResource Include="Properties\Resources.resx">
  291. <Generator>ResXFileCodeGenerator</Generator>
  292. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  293. </EmbeddedResource>
  294. </ItemGroup>
  295. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  296. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  297. Other similar extension points exist, see Microsoft.Common.targets.
  298. <Target Name="BeforeBuild">
  299. </Target>
  300. <Target Name="AfterBuild">
  301. </Target>
  302. -->
  303. <ItemGroup>
  304. <None Include="Content\Sounds\BoulderHit.xnb">
  305. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  306. </None>
  307. <None Include="Content\Sounds\CatapultExplosion.xnb">
  308. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  309. </None>
  310. <None Include="Content\Sounds\CatapultFire.xnb">
  311. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  312. </None>
  313. <None Include="Content\Sounds\Lose.xnb">
  314. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  315. </None>
  316. <None Include="Content\Sounds\RopeStretch.xnb">
  317. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  318. </None>
  319. <None Include="Content\Sounds\Win.xnb">
  320. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  321. </None>
  322. </ItemGroup>
  323. </Project>