2
0

Tetris.MacOS.csproj 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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>{FE144248-B1ED-4A7C-980C-7A2E603CE604}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>Tetris</RootNamespace>
  12. <AssemblyName>Tetris</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. <UseSGen>False</UseSGen>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>none</DebugType>
  31. <Optimize>False</Optimize>
  32. <OutputPath>bin\Release</OutputPath>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <ConsolePause>False</ConsolePause>
  36. <EnableCodeSigning>False</EnableCodeSigning>
  37. <CreatePackage>False</CreatePackage>
  38. <EnablePackageSigning>False</EnablePackageSigning>
  39. <IncludeMonoRuntime>False</IncludeMonoRuntime>
  40. <DefineConstants>MONOMAC</DefineConstants>
  41. <UseSGen>False</UseSGen>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="System" />
  45. <Reference Include="System.Xml" />
  46. <Reference Include="System.Core" />
  47. <Reference Include="System.Xml.Linq" />
  48. <Reference Include="System.Drawing" />
  49. <Reference Include="MonoMac" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <None Include="Info.plist">
  53. </None>
  54. <None Include="Content\Content.contentproj" />
  55. <None Include="Content\background.psd" />
  56. </ItemGroup>
  57. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  58. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  59. <ItemGroup>
  60. <Compile Include="Board.cs" />
  61. <Compile Include="Engine.cs" />
  62. <Compile Include="Program.cs" />
  63. <Compile Include="Record.cs" />
  64. <Compile Include="Score.cs" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Content Include="Content\background.png" />
  68. <Content Include="Content\font.spritefont" />
  69. <Content Include="Content\score.png" />
  70. <Content Include="Content\tetris.png" />
  71. <Content Include="Game.ico" />
  72. <Content Include="GameThumbnail.png" />
  73. <Content Include="Content\Arial.xnb" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  77. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  78. <Name>MonoGame.Framework.MacOS</Name>
  79. </ProjectReference>
  80. <ProjectReference Include="..\..\ThirdParty\Lidgren.Network\Lidgren.Network.MacOS.csproj">
  81. <Project>{AE483C29-042E-4226-BA52-D247CE7676DA}</Project>
  82. <Name>Lidgren.Network.MacOS</Name>
  83. </ProjectReference>
  84. </ItemGroup>
  85. </Project>