2
0

GooCursor.Linux.csproj 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{EA7CF275-795B-4385-80AA-C41DA3B9B0F9}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>GooCursor</RootNamespace>
  11. <AssemblyName>GooCursor</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>True</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>False</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <ConsolePause>False</ConsolePause>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  24. <DebugType>none</DebugType>
  25. <Optimize>False</Optimize>
  26. <OutputPath>bin\Release</OutputPath>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <ConsolePause>False</ConsolePause>
  30. </PropertyGroup>
  31. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  32. <ItemGroup>
  33. <Reference Include="System" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Compile Include="Cursor.cs">
  37. <Link>Cursor.cs</Link>
  38. </Compile>
  39. <Compile Include="Game1.cs">
  40. <Link>Game1.cs</Link>
  41. </Compile>
  42. <Compile Include="Program.cs" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <None Include="Game.ico">
  46. <Link>Game.ico</Link>
  47. </None>
  48. <None Include="GameThumbnail.png">
  49. <Link>GameThumbnail.png</Link>
  50. </None>
  51. <None Include="Readme.md">
  52. <Link>Readme.md</Link>
  53. </None>
  54. <None Include="Content\SimpleFont.spritefont">
  55. <Link>Content\SimpleFont.spritefont</Link>
  56. </None>
  57. <None Include="Content\cursor.bmp">
  58. <Link>Content\cursor.bmp</Link>
  59. </None>
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Content Include="Content\SimpleFont.xnb">
  63. <Link>Content\SimpleFont.xnb</Link>
  64. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  65. </Content>
  66. <Content Include="Content\cursor.xnb">
  67. <Link>Content\cursor.xnb</Link>
  68. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  69. </Content>
  70. </ItemGroup>
  71. </Project>