RectangleCollisionSample.MacOS.csproj 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>{466FBEF8-3AB2-4CED-92B6-6250CFD310DB}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>RectangleCollisionSample</RootNamespace>
  12. <AssemblyName>RectangleCollisionSample</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;MONOMAC</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. <DefineConstants>MONOMAC</DefineConstants>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. <Reference Include="System.Xml" />
  36. <Reference Include="System.Core" />
  37. <Reference Include="System.Xml.Linq" />
  38. <Reference Include="System.Drawing" />
  39. <Reference Include="MonoMac" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <None Include="Info.plist"></None>
  43. <None Include="Game.ico" />
  44. <None Include="GameThumbnail.png" />
  45. <None Include="Content\Block.bmp" />
  46. <None Include="Content\Person.bmp" />
  47. </ItemGroup>
  48. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  49. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  50. <ItemGroup>
  51. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  52. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  53. <Name>MonoGame.Framework.MacOS</Name>
  54. </ProjectReference>
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Folder Include="Content\" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="Game1.cs" />
  61. <Compile Include="Program.cs" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Content Include="Content\Person.xnb" />
  65. <Content Include="Content\Block.xnb" />
  66. </ItemGroup>
  67. </Project>