BackgroundThreadTester.MacOS.csproj 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>{8592FA21-37B6-41C8-BC7F-17EB4930B96A}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>BackgroundThreadTester</RootNamespace>
  12. <AssemblyName>BackgroundThreadTester</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;</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. <Reference Include="System.Windows.Forms" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <None Include="Info.plist" />
  45. <None Include="Content\beehive.png" />
  46. <None Include="README.md" />
  47. </ItemGroup>
  48. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  49. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  50. <ItemGroup>
  51. <Folder Include="Content\" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Content Include="Content\fntStandard.xnb" />
  55. <Content Include="Content\UiCursor.xnb" />
  56. <Content Include="Content\beehive.xnb" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Compile Include="Enums.cs" />
  60. <Compile Include="Game1.cs" />
  61. <Compile Include="InputManager.cs" />
  62. <Compile Include="Object.cs" />
  63. <Compile Include="Program.cs" />
  64. <Compile Include="TextManager.cs" />
  65. <Compile Include="TestTexture.cs" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <InterfaceDefinition Include="MainMenu.xib" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  72. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  73. <Name>MonoGame.Framework.MacOS</Name>
  74. </ProjectReference>
  75. </ItemGroup>
  76. </Project>