AsteroidBeltAssault.MacOS.csproj 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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>{1585306B-CF46-479D-B234-1E10EDF4D741}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>AsteroidBeltAssault</RootNamespace>
  12. <AssemblyName>AsteroidBeltAssault</AssemblyName>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>bin\Debug</OutputPath>
  19. <DefineConstants>DEBUG</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <ConsolePause>false</ConsolePause>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>none</DebugType>
  26. <Optimize>false</Optimize>
  27. <OutputPath>bin\Release</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <ConsolePause>false</ConsolePause>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="System" />
  34. <Reference Include="System.Xml" />
  35. <Reference Include="System.Core" />
  36. <Reference Include="System.Xml.Linq" />
  37. <Reference Include="System.Drawing" />
  38. <Reference Include="MonoMac" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <None Include="Info.plist" />
  42. <None Include="Game.ico" />
  43. <None Include="GameThumbnail.png" />
  44. <None Include="README.md" />
  45. </ItemGroup>
  46. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  47. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  48. <ItemGroup>
  49. <ProjectReference Include="..\..\..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  50. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  51. <Name>MonoGame.Framework.MacOS</Name>
  52. </ProjectReference>
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Folder Include="Content\" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Content Include="Content\Fonts\Pericles14.xnb" />
  59. <Content Include="Content\Sounds\Explosion1.xnb" />
  60. <Content Include="Content\Sounds\Explosion2.xnb" />
  61. <Content Include="Content\Sounds\Explosion3.xnb" />
  62. <Content Include="Content\Sounds\Explosion4.xnb" />
  63. <Content Include="Content\Sounds\Shot1.xnb" />
  64. <Content Include="Content\Sounds\Shot2.xnb" />
  65. <Content Include="Content\Textures\SpriteSheet.xnb" />
  66. <Content Include="Content\Textures\TitleScreen.xnb" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <Compile Include="AsteroidManager.cs" />
  70. <Compile Include="CollisionManager.cs" />
  71. <Compile Include="Enemy.cs" />
  72. <Compile Include="EnemyManager.cs" />
  73. <Compile Include="ExplosionManager.cs" />
  74. <Compile Include="Game1.cs" />
  75. <Compile Include="Particle.cs" />
  76. <Compile Include="PlayerManager.cs" />
  77. <Compile Include="Program.cs" />
  78. <Compile Include="ShotManager.cs" />
  79. <Compile Include="SoundManager.cs" />
  80. <Compile Include="Sprite.cs" />
  81. <Compile Include="StarField.cs" />
  82. </ItemGroup>
  83. </Project>