GooCursor.MacOS.csproj 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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>{18E6467D-47C4-47CA-8CD1-508AD311C054}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>GooCursor</RootNamespace>
  12. <AssemblyName>GooCursor</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. <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. <DefineConstants>MONOMAC</DefineConstants>
  43. <UseSGen>False</UseSGen>
  44. </PropertyGroup>
  45. <ItemGroup>
  46. <Reference Include="System" />
  47. <Reference Include="System.Xml" />
  48. <Reference Include="System.Core" />
  49. <Reference Include="System.Xml.Linq" />
  50. <Reference Include="System.Drawing" />
  51. <Reference Include="MonoMac" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <None Include="Info.plist">
  55. </None>
  56. <None Include="Content\SimpleFont.spritefont" />
  57. <None Include="Content\cursor.bmp" />
  58. <None Include="Game.ico" />
  59. <None Include="GameThumbnail.png" />
  60. <None Include="Readme.md" />
  61. </ItemGroup>
  62. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  63. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  64. <ItemGroup>
  65. <Compile Include="Properties\AssemblyInfo.cs" />
  66. <Compile Include="Cursor.cs" />
  67. <Compile Include="Game1.cs" />
  68. <Compile Include="Program.cs" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Content Include="Content\SimpleFont.xnb" />
  72. <Content Include="Content\cursor.xnb" />
  73. </ItemGroup>
  74. </Project>