StateObjectWindows.csproj 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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)' == '' ">x86</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{51147863-7B4E-4467-A5FA-986259EB686F}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>StateObjectWindows</RootNamespace>
  12. <AssemblyName>StateObjectWindows</AssemblyName>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  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. <PlatformTarget>x86</PlatformTarget>
  23. <ConsolePause>false</ConsolePause>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  26. <DebugType>none</DebugType>
  27. <Optimize>false</Optimize>
  28. <OutputPath>bin\Release</OutputPath>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. <PlatformTarget>x86</PlatformTarget>
  32. <ConsolePause>false</ConsolePause>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Xml" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="System.Xml.Linq" />
  39. <Reference Include="System.Drawing" />
  40. <Reference Include="MonoMac" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <None Include="Info.plist" />
  44. <None Include="App.config" />
  45. <None Include="Game.ico" />
  46. <None Include="GameThumbnail.png" />
  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. <Compile Include="Game1.cs" />
  58. <Compile Include="Program.cs" />
  59. <Compile Include="Properties\AssemblyInfo.cs" />
  60. </ItemGroup>
  61. </Project>