2
0

RobotRampage.MacOS.csproj 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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>{9522776F-02BA-4BED-B8BB-6BAE580F4068}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>RobotRampage</RootNamespace>
  12. <AssemblyName>RobotRampage</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. <DefineConstants>MONOMAC</DefineConstants>
  42. <UseSGen>False</UseSGen>
  43. </PropertyGroup>
  44. <ItemGroup>
  45. <Reference Include="System" />
  46. <Reference Include="System.Xml" />
  47. <Reference Include="System.Core" />
  48. <Reference Include="System.Xml.Linq" />
  49. <Reference Include="System.Drawing" />
  50. <Reference Include="MonoMac" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <None Include="Info.plist">
  54. </None>
  55. <None Include="Game.ico" />
  56. <None Include="GameThumbnail.png" />
  57. <None Include="README.md" />
  58. </ItemGroup>
  59. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  60. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  61. <ItemGroup>
  62. <Folder Include="Content\" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Content Include="Content\Fonts\Pericles14.xnb" />
  66. <Content Include="Content\Textures\SpriteSheet.xnb" />
  67. <Content Include="Content\Textures\TitleScreen.xnb" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Compile Include="Camera.cs" />
  71. <Compile Include="ComputerTerminal.cs" />
  72. <Compile Include="EffectsManager.cs" />
  73. <Compile Include="Enemy.cs" />
  74. <Compile Include="EnemyManager.cs" />
  75. <Compile Include="Game1.cs" />
  76. <Compile Include="GameManager.cs" />
  77. <Compile Include="GoalManager.cs" />
  78. <Compile Include="Particle.cs" />
  79. <Compile Include="PathFinder.cs" />
  80. <Compile Include="PathNode.cs" />
  81. <Compile Include="Player.cs" />
  82. <Compile Include="Program.cs" />
  83. <Compile Include="Sprite.cs" />
  84. <Compile Include="TileMap.cs" />
  85. <Compile Include="WeaponManager.cs" />
  86. </ItemGroup>
  87. <ItemGroup>
  88. <ProjectReference Include="..\..\..\..\ThirdParty\Lidgren.Network\Lidgren.Network.MacOS.csproj">
  89. <Project>{AE483C29-042E-4226-BA52-D247CE7676DA}</Project>
  90. <Name>Lidgren.Network.MacOS</Name>
  91. </ProjectReference>
  92. <ProjectReference Include="..\..\..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  93. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  94. <Name>MonoGame.Framework.MacOS</Name>
  95. </ProjectReference>
  96. </ItemGroup>
  97. </Project>