2
0

FloodControl.Linux.csproj 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  14. <DebugSymbols>True</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>False</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG,LINUX</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <PlatformTarget>x86</PlatformTarget>
  22. <ConsolePause>False</ConsolePause>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  25. <DebugType>none</DebugType>
  26. <Optimize>False</Optimize>
  27. <OutputPath>bin\Release</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <PlatformTarget>x86</PlatformTarget>
  31. <ConsolePause>False</ConsolePause>
  32. </PropertyGroup>
  33. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Xml" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="System.Xml.Linq" />
  39. <Reference Include="System.Drawing" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Folder Include="Content\" />
  43. <Folder Include="Content\Fonts\" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="Program.cs" />
  47. <Compile Include="FadingPiece.cs">
  48. <Link>FadingPiece.cs</Link>
  49. </Compile>
  50. <Compile Include="FallingPiece.cs">
  51. <Link>FallingPiece.cs</Link>
  52. </Compile>
  53. <Compile Include="Game1.cs">
  54. <Link>Game1.cs</Link>
  55. </Compile>
  56. <Compile Include="GameBoard.cs">
  57. <Link>GameBoard.cs</Link>
  58. </Compile>
  59. <Compile Include="GamePiece.cs">
  60. <Link>GamePiece.cs</Link>
  61. </Compile>
  62. <Compile Include="RotatingPiece.cs">
  63. <Link>RotatingPiece.cs</Link>
  64. </Compile>
  65. <Compile Include="ScoreZooms.cs">
  66. <Link>ScoreZooms.cs</Link>
  67. </Compile>
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Content Include="Content\Fonts\Pericles36.xnb">
  71. <Link>Content\Fonts\Pericles36.xnb</Link>
  72. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  73. </Content>
  74. <Content Include="Content\Textures\Background.xnb">
  75. <Link>Content\Textures\Background.xnb</Link>
  76. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  77. </Content>
  78. <Content Include="Content\Textures\Tile_Sheet.xnb">
  79. <Link>Content\Textures\Tile_Sheet.xnb</Link>
  80. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  81. </Content>
  82. <Content Include="Content\Textures\TitleScreen.xnb">
  83. <Link>Content\Textures\TitleScreen.xnb</Link>
  84. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  85. </Content>
  86. </ItemGroup>
  87. <ItemGroup>
  88. <None Include="Game.ico">
  89. <Link>Game.ico</Link>
  90. </None>
  91. <None Include="GameThumbnail.png">
  92. <Link>GameThumbnail.png</Link>
  93. </None>
  94. <None Include="README.md">
  95. <Link>README.md</Link>
  96. </None>
  97. </ItemGroup>
  98. </Project>