AsteroidBeltAssault.MacOS.csproj 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. <EnableCodeSigning>false</EnableCodeSigning>
  24. <CreatePackage>false</CreatePackage>
  25. <EnablePackageSigning>false</EnablePackageSigning>
  26. <IncludeMonoRuntime>false</IncludeMonoRuntime>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>none</DebugType>
  30. <Optimize>false</Optimize>
  31. <OutputPath>bin\Release</OutputPath>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <ConsolePause>false</ConsolePause>
  35. <EnableCodeSigning>false</EnableCodeSigning>
  36. <CreatePackage>false</CreatePackage>
  37. <EnablePackageSigning>false</EnablePackageSigning>
  38. <IncludeMonoRuntime>false</IncludeMonoRuntime>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="System" />
  42. <Reference Include="System.Xml" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Xml.Linq" />
  45. <Reference Include="System.Drawing" />
  46. <Reference Include="MonoMac" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <None Include="Info.plist">
  50. </None>
  51. <None Include="Game.ico" />
  52. <None Include="GameThumbnail.png" />
  53. <None Include="README.md" />
  54. </ItemGroup>
  55. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  56. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  57. <ItemGroup>
  58. <ProjectReference Include="..\..\..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  59. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  60. <Name>MonoGame.Framework.MacOS</Name>
  61. </ProjectReference>
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Folder Include="Content\" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Content Include="Content\Fonts\Pericles14.xnb" />
  68. <Content Include="Content\Sounds\Explosion1.xnb" />
  69. <Content Include="Content\Sounds\Explosion2.xnb" />
  70. <Content Include="Content\Sounds\Explosion3.xnb" />
  71. <Content Include="Content\Sounds\Explosion4.xnb" />
  72. <Content Include="Content\Sounds\Shot1.xnb" />
  73. <Content Include="Content\Sounds\Shot2.xnb" />
  74. <Content Include="Content\Textures\SpriteSheet.xnb" />
  75. <Content Include="Content\Textures\TitleScreen.xnb" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <Compile Include="AsteroidManager.cs" />
  79. <Compile Include="CollisionManager.cs" />
  80. <Compile Include="Enemy.cs" />
  81. <Compile Include="EnemyManager.cs" />
  82. <Compile Include="ExplosionManager.cs" />
  83. <Compile Include="Game1.cs" />
  84. <Compile Include="Particle.cs" />
  85. <Compile Include="PlayerManager.cs" />
  86. <Compile Include="Program.cs" />
  87. <Compile Include="ShotManager.cs" />
  88. <Compile Include="SoundManager.cs" />
  89. <Compile Include="Sprite.cs" />
  90. <Compile Include="StarField.cs" />
  91. </ItemGroup>
  92. </Project>