HoneycombRush.MacOS.csproj 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{2C0696B3-0D1E-4039-B4AB-9A210B3CF290}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>HoneycombRush</RootNamespace>
  12. <AssemblyName>HoneycombRush</AssemblyName>
  13. <SuppressXamMacUpsell>True</SuppressXamMacUpsell>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>True</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>False</Optimize>
  19. <OutputPath>bin\Debug</OutputPath>
  20. <DefineConstants>DEBUG; MONOMAC</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. <ConsolePause>False</ConsolePause>
  24. <EnableCodeSigning>False</EnableCodeSigning>
  25. <CreatePackage>False</CreatePackage>
  26. <EnablePackageSigning>False</EnablePackageSigning>
  27. <IncludeMonoRuntime>False</IncludeMonoRuntime>
  28. <UseSGen>False</UseSGen>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <DebugType>none</DebugType>
  32. <Optimize>False</Optimize>
  33. <OutputPath>bin\Release</OutputPath>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <ConsolePause>False</ConsolePause>
  37. <EnableCodeSigning>False</EnableCodeSigning>
  38. <CreatePackage>False</CreatePackage>
  39. <EnablePackageSigning>False</EnablePackageSigning>
  40. <IncludeMonoRuntime>False</IncludeMonoRuntime>
  41. <UseSGen>False</UseSGen>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="System" />
  45. <Reference Include="System.Xml" />
  46. <Reference Include="System.Core" />
  47. <Reference Include="System.Xml.Linq" />
  48. <Reference Include="System.Drawing" />
  49. <Reference Include="MonoMac" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <None Include="Info.plist">
  53. </None>
  54. <None Include="Background.png" />
  55. <None Include="Game.ico" />
  56. <None Include="GameThumbnail.png" />
  57. <None Include="Content\Sounds\FillingHoneyPot_Loop.wav" />
  58. </ItemGroup>
  59. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  60. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  61. <ItemGroup>
  62. <Compile Include="HoneycombRush.cs" />
  63. <Compile Include="Program.cs" />
  64. <Compile Include="Misc\AudioManager.cs" />
  65. <Compile Include="Misc\ConfigurationManager.cs" />
  66. <Compile Include="Misc\ExtensionMethods.cs" />
  67. <Compile Include="Misc\ScaledAnimation.cs" />
  68. <Compile Include="Misc\ScaledSpriteBatch.cs" />
  69. <Compile Include="Misc\UIConstants.cs" />
  70. <Compile Include="Misc\VirtualThumbsticks.cs" />
  71. <Compile Include="Objects\Bee.cs" />
  72. <Compile Include="Objects\BeeKeeper.cs" />
  73. <Compile Include="Objects\Beehive.cs" />
  74. <Compile Include="Objects\HoneyJar.cs" />
  75. <Compile Include="Objects\ScoreBar.cs" />
  76. <Compile Include="Objects\SmokePuff.cs" />
  77. <Compile Include="Objects\SoldierBee.cs" />
  78. <Compile Include="Objects\TexturedDrawableGameComponent.cs" />
  79. <Compile Include="Objects\Vat.cs" />
  80. <Compile Include="Objects\WorkerBee.cs" />
  81. <Compile Include="ScreenManager\GameScreen.cs" />
  82. <Compile Include="ScreenManager\InputState.cs" />
  83. <Compile Include="ScreenManager\MenuEntry.cs" />
  84. <Compile Include="ScreenManager\MenuScreen.cs" />
  85. <Compile Include="ScreenManager\PlayerIndexEventArgs.cs" />
  86. <Compile Include="ScreenManager\ScreenManager.cs" />
  87. <Compile Include="Screens\BackgroundScreen.cs" />
  88. <Compile Include="Screens\GameplayScreen.cs" />
  89. <Compile Include="Screens\HighScoreScreen.cs" />
  90. <Compile Include="Screens\LevelOverScreen.cs" />
  91. <Compile Include="Screens\LoadingAndInstructionScreen.cs" />
  92. <Compile Include="Screens\MainMenuScreen.cs" />
  93. <Compile Include="Screens\PauseScreen.cs" />
  94. <Compile Include="GameDebugTools\DebugCommandUI.cs" />
  95. <Compile Include="GameDebugTools\DebugManager.cs" />
  96. <Compile Include="GameDebugTools\DebugSystem.cs" />
  97. <Compile Include="GameDebugTools\FpsCounter.cs" />
  98. <Compile Include="GameDebugTools\IDebugCommandHost.cs" />
  99. <Compile Include="GameDebugTools\KeyboardUtils.cs" />
  100. <Compile Include="GameDebugTools\Layout.cs" />
  101. <Compile Include="GameDebugTools\RemoteDebugCommand.cs" />
  102. <Compile Include="GameDebugTools\StringBuilderExtensions.cs" />
  103. <Compile Include="GameDebugTools\TimeRuler.cs" />
  104. </ItemGroup>
  105. <ItemGroup>
  106. <Content Include="Content\Configuration\Configuration.xml" />
  107. <Content Include="Content\Fonts\GameScreenFont14px.xnb" />
  108. <Content Include="Content\Fonts\GameScreenFont16px.xnb" />
  109. <Content Include="Content\Fonts\GameScreenFont36px.xnb" />
  110. <Content Include="Content\Fonts\HighScoreFont.xnb" />
  111. <Content Include="Content\Fonts\MenuFont.xnb" />
  112. <Content Include="Content\Sounds\10SecondCountdown.xnb" />
  113. <Content Include="Content\Sounds\30SecondWarning.xnb" />
  114. <Content Include="Content\Sounds\BeeBuzzing_Loop.xnb" />
  115. <Content Include="Content\Sounds\Defeat.xnb" />
  116. <Content Include="Content\Sounds\DepositingIntoVat_Loop.xnb" />
  117. <Content Include="Content\Sounds\HighScore.xnb" />
  118. <Content Include="Content\Sounds\HoneyPotBreak.xnb" />
  119. <Content Include="Content\Sounds\InGameSong_Loop.wma" />
  120. <Content Include="Content\Sounds\InGameSong_Loop.xnb" />
  121. <Content Include="Content\Sounds\MenuMusic_Loop.wma" />
  122. <Content Include="Content\Sounds\MenuMusic_Loop.xnb" />
  123. <Content Include="Content\Sounds\SmokeGun_Loop.xnb" />
  124. <Content Include="Content\Sounds\Stung.xnb" />
  125. <Content Include="Content\Sounds\Stunned.xnb" />
  126. <Content Include="Content\Sounds\Victory.xnb" />
  127. <Content Include="Content\Textures\AnimationsDefinition.xml" />
  128. <Content Include="Content\Textures\Smoke.xnb" />
  129. <Content Include="Content\Textures\SmokeAnimationStrip.xnb" />
  130. <Content Include="Content\Textures\SoldierBeeWingFlap.xnb" />
  131. <Content Include="Content\Textures\Square.xnb" />
  132. <Content Include="Content\Textures\arrow.xnb" />
  133. <Content Include="Content\Textures\barBlackBorder.xnb" />
  134. <Content Include="Content\Textures\barGreen.xnb" />
  135. <Content Include="Content\Textures\barRed.xnb" />
  136. <Content Include="Content\Textures\barYellow.xnb" />
  137. <Content Include="Content\Textures\beeWingFlap.xnb" />
  138. <Content Include="Content\Textures\beehive.xnb" />
  139. <Content Include="Content\Textures\collect.xnb" />
  140. <Content Include="Content\Textures\controlstick.xnb" />
  141. <Content Include="Content\Textures\controlstickBoundary.xnb" />
  142. <Content Include="Content\Textures\deposit.xnb" />
  143. <Content Include="Content\Textures\hit.xnb" />
  144. <Content Include="Content\Textures\honeyJar.xnb" />
  145. <Content Include="Content\Textures\shooting.xnb" />
  146. <Content Include="Content\Textures\smokeBtn.xnb" />
  147. <Content Include="Content\Textures\smokePuff.xnb" />
  148. <Content Include="Content\Textures\vat.xnb" />
  149. <Content Include="Content\Textures\walkLegs.xnb" />
  150. <Content Include="Content\Textures\walkTorso.xnb" />
  151. <Content Include="Content\Textures\Backgrounds\GamePlayBackground.xnb" />
  152. <Content Include="Content\Textures\Backgrounds\blank.xnb" />
  153. <Content Include="Content\Textures\Backgrounds\buttonBackground.xnb" />
  154. <Content Include="Content\Textures\Backgrounds\highScoreScreen.xnb" />
  155. <Content Include="Content\Textures\Backgrounds\instructionsPC.xnb" />
  156. <Content Include="Content\Textures\Backgrounds\instructionsXbox.xnb" />
  157. <Content Include="Content\Textures\Backgrounds\pauseBackground.xnb" />
  158. <Content Include="Content\Textures\Backgrounds\titleScreen.xnb" />
  159. <Content Include="Content\Sounds\FillingHoneyPot_Loop.xnb" />
  160. </ItemGroup>
  161. <ItemGroup>
  162. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  163. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  164. <Name>MonoGame.Framework.MacOS</Name>
  165. </ProjectReference>
  166. <ProjectReference Include="..\..\ThirdParty\Lidgren.Network\Lidgren.Network.MacOS.csproj">
  167. <Project>{AE483C29-042E-4226-BA52-D247CE7676DA}</Project>
  168. <Name>Lidgren.Network.MacOS</Name>
  169. </ProjectReference>
  170. </ItemGroup>
  171. </Project>