MonoGame.Samples.TiledSprites.MacOS.csproj 3.7 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>{7D24D7EA-822C-4991-8BC9-1C2EF9C5F59A}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>TiledSprites</RootNamespace>
  12. <AssemblyName>TiledSprites</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. <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, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>..\..\..\..\MonoMac\monomac\src\MonoMac.dll</HintPath>
  49. </Reference>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <None Include="Info.plist">
  53. </None>
  54. <None Include="Default.png">
  55. <Link>Default.png</Link>
  56. </None>
  57. <None Include="TiledSprites.icns" />
  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="main.cs" />
  63. <Compile Include="AnimatedSprite.cs">
  64. <Link>AnimatedSprite.cs</Link>
  65. </Compile>
  66. <Compile Include="Camera2D.cs">
  67. <Link>Camera2D.cs</Link>
  68. </Compile>
  69. <Compile Include="SpriteSheet.cs">
  70. <Link>SpriteSheet.cs</Link>
  71. </Compile>
  72. <Compile Include="TiledSprites.cs">
  73. <Link>TiledSprites.cs</Link>
  74. </Compile>
  75. <Compile Include="TileGrid.cs">
  76. <Link>TileGrid.cs</Link>
  77. </Compile>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <Content Include="Content\ball.png">
  81. <Link>Content\ball.png</Link>
  82. </Content>
  83. <Content Include="Content\clouds.png">
  84. <Link>Content\clouds.png</Link>
  85. </Content>
  86. <Content Include="Content\ground.png">
  87. <Link>Content\ground.png</Link>
  88. </Content>
  89. <Content Include="GameThumbnail.png" />
  90. </ItemGroup>
  91. <ItemGroup>
  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>