2
0

Tetris.Linux.csproj 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>{86A619E2-C8F0-452B-B762-C69D5BB07C98}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>Tetris</RootNamespace>
  11. <AssemblyName>Tetris</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. <None Include="Content\font.spritefont">
  43. <Link>Content\font.spritefont</Link>
  44. </None>
  45. <None Include="Content\Content.contentproj">
  46. <Link>Content\Content.contentproj</Link>
  47. </None>
  48. <None Include="Content\background.psd">
  49. <Link>Content\background.psd</Link>
  50. </None>
  51. <None Include="Info.plist">
  52. <Link>Info.plist</Link>
  53. </None>
  54. <None Include="GameThumbnail.png">
  55. <Link>GameThumbnail.png</Link>
  56. </None>
  57. <None Include="Game.ico">
  58. <Link>Game.ico</Link>
  59. </None>
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Compile Include="Program.cs" />
  63. <Compile Include="Score.cs">
  64. <Link>Score.cs</Link>
  65. </Compile>
  66. <Compile Include="Record.cs">
  67. <Link>Record.cs</Link>
  68. </Compile>
  69. <Compile Include="Board.cs">
  70. <Link>Board.cs</Link>
  71. </Compile>
  72. <Compile Include="Engine.cs" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Folder Include="Content\" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <Content Include="Content\Arial.xnb">
  79. <Link>Content\Arial.xnb</Link>
  80. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  81. </Content>
  82. <Content Include="Content\background.png">
  83. <Link>Content\background.png</Link>
  84. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  85. </Content>
  86. <Content Include="Content\tetris.png">
  87. <Link>Content\tetris.png</Link>
  88. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  89. </Content>
  90. <Content Include="Content\score.png">
  91. <Link>Content\score.png</Link>
  92. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  93. </Content>
  94. </ItemGroup>
  95. </Project>