2
0

GooCursor.MacOS.csproj 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  30. <DebugType>none</DebugType>
  31. <Optimize>false</Optimize>
  32. <OutputPath>bin\Release</OutputPath>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <PlatformTarget>x86</PlatformTarget>
  36. <ConsolePause>false</ConsolePause>
  37. <EnableCodeSigning>false</EnableCodeSigning>
  38. <CreatePackage>false</CreatePackage>
  39. <EnablePackageSigning>false</EnablePackageSigning>
  40. <IncludeMonoRuntime>false</IncludeMonoRuntime>
  41. <DefineConstants>MONOMAC</DefineConstants>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="System" />
  45. <Reference Include="System.Xml" />
  46. <Reference Include="System.Core" />
  47. <Reference Include="System.Xml.Linq" />
  48. <Reference Include="System.Drawing" />
  49. <Reference Include="MonoMac" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <None Include="Info.plist">
  53. </None>
  54. <None Include="Content\SimpleFont.spritefont" />
  55. <None Include="Content\cursor.bmp" />
  56. <None Include="Game.ico" />
  57. <None Include="GameThumbnail.png" />
  58. <None Include="Readme.md" />
  59. </ItemGroup>
  60. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  61. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  62. <ItemGroup>
  63. <ProjectReference Include="..\..\ThirdParty\Lidgren.Network\Lidgren.Network.MacOS.csproj">
  64. <Project>{AE483C29-042E-4226-BA52-D247CE7676DA}</Project>
  65. <Name>Lidgren.Network.MacOS</Name>
  66. </ProjectReference>
  67. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.MacOS.csproj">
  68. <Project>{36C538E6-C32A-4A8D-A39C-566173D7118E}</Project>
  69. <Name>MonoGame.Framework.MacOS</Name>
  70. </ProjectReference>
  71. </ItemGroup>
  72. <ItemGroup>
  73. <Compile Include="Properties\AssemblyInfo.cs" />
  74. <Compile Include="Cursor.cs" />
  75. <Compile Include="Game1.cs" />
  76. <Compile Include="Program.cs" />
  77. </ItemGroup>
  78. <ItemGroup>
  79. <Content Include="Content\SimpleFont.xnb" />
  80. <Content Include="Content\cursor.xnb" />
  81. </ItemGroup>
  82. </Project>