CatapultNetWars.MacOS.csproj 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{1F4BF87D-34DA-417D-96DE-24213A05739B}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>CatapultGame</RootNamespace>
  12. <AssemblyName>Catapault</AssemblyName>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>bin\Debug</OutputPath>
  19. <DefineConstants>DEBUG; MONOMAC</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <PlatformTarget>x86</PlatformTarget>
  23. <ConsolePause>false</ConsolePause>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  26. <DebugType>none</DebugType>
  27. <Optimize>false</Optimize>
  28. <OutputPath>bin\Release</OutputPath>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. <PlatformTarget>x86</PlatformTarget>
  32. <ConsolePause>false</ConsolePause>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Xml" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="System.Xml.Linq" />
  39. <Reference Include="System.Drawing" />
  40. <Reference Include="MonoMac" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <None Include="Info.plist"></None>
  44. <None Include="Background.png" />
  45. <None Include="Game.ico" />
  46. </ItemGroup>
  47. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  48. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  49. <ItemGroup>
  50. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  51. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  52. <Name>MonoGame.Framework.MacOS</Name>
  53. </ProjectReference>
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Compile Include="CatapultGame.cs" />
  57. <Compile Include="Program.cs" />
  58. <Compile Include="Catapult\Catapult.cs" />
  59. <Compile Include="Catapult\Projectile.cs" />
  60. <Compile Include="Players\AI.cs" />
  61. <Compile Include="Players\Human.cs" />
  62. <Compile Include="Players\Player.cs" />
  63. <Compile Include="ScreenManager\GameScreen.cs" />
  64. <Compile Include="ScreenManager\InputState.cs" />
  65. <Compile Include="ScreenManager\MenuEntry.cs" />
  66. <Compile Include="ScreenManager\MenuScreen.cs" />
  67. <Compile Include="ScreenManager\PlayerIndexEventArgs.cs" />
  68. <Compile Include="ScreenManager\ScreenManager.cs" />
  69. <Compile Include="Screens\BackgroundScreen.cs" />
  70. <Compile Include="Screens\GameplayScreen.cs" />
  71. <Compile Include="Screens\InstructionsScreen.cs" />
  72. <Compile Include="Screens\MainMenuScreen.cs" />
  73. <Compile Include="Screens\PauseScreen.cs" />
  74. <Compile Include="Utility\Animation.cs" />
  75. <Compile Include="Utility\AudioManager.cs" />
  76. <Compile Include="ScreenManager\MouseGestureType.cs" />
  77. <Compile Include="IMessageDisplay.cs" />
  78. <Compile Include="MessageDisplayComponent.cs" />
  79. <Compile Include="Networking\AvailableSessionMenuEntry.cs" />
  80. <Compile Include="Networking\CreateOrFindSessionScreen.cs" />
  81. <Compile Include="Networking\JoinSessionScreen.cs" />
  82. <Compile Include="Networking\LobbyScreen.cs" />
  83. <Compile Include="Networking\NetworkBusyScreen.cs" />
  84. <Compile Include="Networking\NetworkErrorScreen.cs" />
  85. <Compile Include="Networking\NetworkSessionComponent.cs" />
  86. <Compile Include="Networking\OperationCompletedEventArgs.cs" />
  87. <Compile Include="Networking\ProfileSignInScreen.cs" />
  88. <Compile Include="Resources.Designer.cs" />
  89. <Compile Include="Screens\LoadingScreen.cs" />
  90. <Compile Include="Screens\MessageBoxScreen.cs" />
  91. </ItemGroup>
  92. <ItemGroup>
  93. <Content Include="Content\Fonts\HUDFont.xnb" />
  94. <Content Include="Content\Fonts\MenuFont.xnb" />
  95. <Content Include="Content\Sounds\BoulderHit.xnb" />
  96. <Content Include="Content\Sounds\CatapultExplosion.xnb" />
  97. <Content Include="Content\Sounds\CatapultFire.xnb" />
  98. <Content Include="Content\Sounds\Lose.xnb" />
  99. <Content Include="Content\Sounds\RopeStretch.xnb" />
  100. <Content Include="Content\Sounds\Win.xnb" />
  101. <Content Include="Content\Textures\Ammo\rock_ammo.xnb" />
  102. <Content Include="Content\Textures\Backgrounds\blank.xnb" />
  103. <Content Include="Content\Textures\Backgrounds\cloud1.xnb" />
  104. <Content Include="Content\Textures\Backgrounds\cloud2.xnb" />
  105. <Content Include="Content\Textures\Backgrounds\defeat.xnb" />
  106. <Content Include="Content\Textures\Backgrounds\gameplay_screen.xnb" />
  107. <Content Include="Content\Textures\Backgrounds\instructions.xnb" />
  108. <Content Include="Content\Textures\Backgrounds\mountain.xnb" />
  109. <Content Include="Content\Textures\Backgrounds\sky.xnb" />
  110. <Content Include="Content\Textures\Backgrounds\title_screen.xnb" />
  111. <Content Include="Content\Textures\Backgrounds\victory.xnb" />
  112. <Content Include="Content\Textures\Catapults\Blue\blueDestroyed\blueCatapult_destroyed.xnb" />
  113. <Content Include="Content\Textures\Catapults\Blue\blueFire\blueCatapult_fire.xnb" />
  114. <Content Include="Content\Textures\Catapults\Blue\blueIdle\blueIdle.xnb" />
  115. <Content Include="Content\Textures\Catapults\Blue\bluePullback\blueCatapult_Pullback.xnb" />
  116. <Content Include="Content\Textures\Catapults\Fire_Miss\fire_miss.xnb" />
  117. <Content Include="Content\Textures\Catapults\Hit_Smoke\smoke.xnb" />
  118. <Content Include="Content\Textures\Catapults\AnimationsDef.xml" />
  119. <Content Include="Content\Textures\Catapults\Red\redDestroyed\redCatapult_destroyed.xnb" />
  120. <Content Include="Content\Textures\Catapults\Red\redFire\redCatapult_fire.xnb" />
  121. <Content Include="Content\Textures\Catapults\Red\redIdle\redIdle.xnb" />
  122. <Content Include="Content\Textures\Catapults\Red\redPullback\redCatapult_Pullback.xnb" />
  123. <Content Include="Content\Textures\HUD\Arrow.xnb" />
  124. <Content Include="Content\Textures\HUD\ammoType.xnb" />
  125. <Content Include="Content\Textures\HUD\hudBackground.xnb" />
  126. <Content Include="Content\Textures\HUD\windArrow.xnb" />
  127. <Content Include="Content\gradient.xnb" />
  128. <Content Include="Content\cat.xnb" />
  129. <Content Include="Content\chat_able.xnb" />
  130. <Content Include="Content\chat_mute.xnb" />
  131. <Content Include="Content\chat_ready.xnb" />
  132. <Content Include="Content\chat_talking.xnb" />
  133. </ItemGroup>
  134. <ItemGroup>
  135. <Folder Include="Networking\" />
  136. </ItemGroup>
  137. <ItemGroup>
  138. <EmbeddedResource Include="Resources.resx" />
  139. </ItemGroup>
  140. </Project>