BackgroundThreadTester.MacOS.csproj 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. <EnableCodeSigning>False</EnableCodeSigning>
  25. <CreatePackage>False</CreatePackage>
  26. <EnablePackageSigning>False</EnablePackageSigning>
  27. <IncludeMonoRuntime>False</IncludeMonoRuntime>
  28. <UseSGen>False</UseSGen>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  31. <DebugType>none</DebugType>
  32. <Optimize>False</Optimize>
  33. <OutputPath>bin\Release</OutputPath>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <PlatformTarget>x86</PlatformTarget>
  37. <ConsolePause>False</ConsolePause>
  38. <EnableCodeSigning>False</EnableCodeSigning>
  39. <CreatePackage>False</CreatePackage>
  40. <EnablePackageSigning>False</EnablePackageSigning>
  41. <IncludeMonoRuntime>False</IncludeMonoRuntime>
  42. <UseSGen>False</UseSGen>
  43. </PropertyGroup>
  44. <ItemGroup>
  45. <Reference Include="System" />
  46. <Reference Include="System.Xml" />
  47. <Reference Include="System.Core" />
  48. <Reference Include="System.Xml.Linq" />
  49. <Reference Include="System.Drawing" />
  50. <Reference Include="MonoMac" />
  51. <Reference Include="System.Windows.Forms" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <None Include="Info.plist">
  55. </None>
  56. <None Include="Content\beehive.png" />
  57. <None Include="README.md" />
  58. </ItemGroup>
  59. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  60. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  61. <ItemGroup>
  62. <Folder Include="Content\" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Content Include="Content\fntStandard.xnb" />
  66. <Content Include="Content\UiCursor.xnb" />
  67. <Content Include="Content\beehive.xnb" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Compile Include="Enums.cs" />
  71. <Compile Include="Game1.cs" />
  72. <Compile Include="InputManager.cs" />
  73. <Compile Include="Object.cs" />
  74. <Compile Include="Program.cs" />
  75. <Compile Include="TextManager.cs" />
  76. <Compile Include="TestTexture.cs" />
  77. </ItemGroup>
  78. <ItemGroup>
  79. <InterfaceDefinition Include="MainMenu.xib" />
  80. </ItemGroup>
  81. </Project>