2
0

MonoGame.Samples.FloodControl.Linux.csproj 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{86A219E2-C8F1-422B-C762-C69D5BB07C98}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>FloodControl</RootNamespace>
  11. <AssemblyName>FloodControl</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  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,LINUX</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. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. <Reference Include="System.Xml" />
  38. <Reference Include="System.Core" />
  39. <Reference Include="System.Xml.Linq" />
  40. <Reference Include="System.Drawing" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Folder Include="Content\" />
  44. <Folder Include="Content\Fonts\" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="Program.cs" />
  48. <Compile Include="FadingPiece.cs">
  49. <Link>FadingPiece.cs</Link>
  50. </Compile>
  51. <Compile Include="FallingPiece.cs">
  52. <Link>FallingPiece.cs</Link>
  53. </Compile>
  54. <Compile Include="Game1.cs">
  55. <Link>Game1.cs</Link>
  56. </Compile>
  57. <Compile Include="GameBoard.cs">
  58. <Link>GameBoard.cs</Link>
  59. </Compile>
  60. <Compile Include="GamePiece.cs">
  61. <Link>GamePiece.cs</Link>
  62. </Compile>
  63. <Compile Include="RotatingPiece.cs">
  64. <Link>RotatingPiece.cs</Link>
  65. </Compile>
  66. <Compile Include="ScoreZooms.cs">
  67. <Link>ScoreZooms.cs</Link>
  68. </Compile>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <ProjectReference Include="..\..\..\..\..\MonoGame.Framework\MonoGame.Framework.Linux.csproj">
  72. <Project>{35253CE1-C864-4CD3-8249-4D1319748E8F}</Project>
  73. <Name>MonoGame.Framework.Linux</Name>
  74. </ProjectReference>
  75. </ItemGroup>
  76. <ItemGroup>
  77. <Content Include="Content\Fonts\Pericles36.xnb">
  78. <Link>Content\Fonts\Pericles36.xnb</Link>
  79. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  80. </Content>
  81. <Content Include="Content\Textures\Background.xnb">
  82. <Link>Content\Textures\Background.xnb</Link>
  83. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  84. </Content>
  85. <Content Include="Content\Textures\Tile_Sheet.xnb">
  86. <Link>Content\Textures\Tile_Sheet.xnb</Link>
  87. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  88. </Content>
  89. <Content Include="Content\Textures\TitleScreen.xnb">
  90. <Link>Content\Textures\TitleScreen.xnb</Link>
  91. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  92. </Content>
  93. </ItemGroup>
  94. <ItemGroup>
  95. <None Include="Game.ico">
  96. <Link>Game.ico</Link>
  97. </None>
  98. <None Include="GameThumbnail.png">
  99. <Link>GameThumbnail.png</Link>
  100. </None>
  101. <None Include="README.md">
  102. <Link>README.md</Link>
  103. </None>
  104. </ItemGroup>
  105. </Project>