GameStateManagement.MacOS.csproj 4.1 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>{4AD6BC7A-DB9A-4A6F-9EE2-DAD9B0BBA2A8}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>GameStateManagement</RootNamespace>
  12. <AssemblyName>GameStateManagement</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. <DefineConstants>MONOMAC</DefineConstants>
  36. <EnableCodeSigning>false</EnableCodeSigning>
  37. <CreatePackage>false</CreatePackage>
  38. <EnablePackageSigning>false</EnablePackageSigning>
  39. <IncludeMonoRuntime>false</IncludeMonoRuntime>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="System" />
  43. <Reference Include="System.Xml" />
  44. <Reference Include="System.Core" />
  45. <Reference Include="System.Xml.Linq" />
  46. <Reference Include="System.Drawing" />
  47. <Reference Include="MonoMac" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <None Include="Info.plist">
  51. </None>
  52. <None Include="Background.png" />
  53. <None Include="Game.ico" />
  54. <None Include="Content\background.png" />
  55. <None Include="Content\blank.png" />
  56. <None Include="Content\gamefont.spritefont" />
  57. <None Include="Content\gradient.png" />
  58. <None Include="Content\menufont.spritefont" />
  59. </ItemGroup>
  60. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  61. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  62. <ItemGroup>
  63. <Compile Include="Game.cs" />
  64. <Compile Include="ScreenManager\GameScreen.cs" />
  65. <Compile Include="ScreenManager\InputState.cs" />
  66. <Compile Include="ScreenManager\ScreenManager.cs" />
  67. <Compile Include="Screens\BackgroundScreen.cs" />
  68. <Compile Include="Screens\GameplayScreen.cs" />
  69. <Compile Include="Screens\LoadingScreen.cs" />
  70. <Compile Include="Screens\MainMenuScreen.cs" />
  71. <Compile Include="Screens\MenuEntry.cs" />
  72. <Compile Include="Screens\MenuScreen.cs" />
  73. <Compile Include="Screens\MessageBoxScreen.cs" />
  74. <Compile Include="Screens\OptionsMenuScreen.cs" />
  75. <Compile Include="Screens\PauseMenuScreen.cs" />
  76. <Compile Include="Screens\PlayerIndexEventArgs.cs" />
  77. <Compile Include="Program.cs" />
  78. </ItemGroup>
  79. <ItemGroup>
  80. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  81. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  82. <Name>MonoGame.Framework.MacOS</Name>
  83. </ProjectReference>
  84. </ItemGroup>
  85. <ItemGroup>
  86. <Folder Include="Content\" />
  87. <Folder Include="ScreenManager\" />
  88. <Folder Include="Screens\" />
  89. </ItemGroup>
  90. <ItemGroup>
  91. <Content Include="Content\background.xnb" />
  92. <Content Include="Content\blank.xnb" />
  93. <Content Include="Content\gamefont.xnb" />
  94. <Content Include="Content\gradient.xnb" />
  95. <Content Include="Content\menufont.xnb" />
  96. </ItemGroup>
  97. </Project>