ParticleSample.Linux.csproj 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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>{EB1F36EC-5DB8-41AC-AB99-E9337239A9F9}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>ParticleSample</RootNamespace>
  11. <AssemblyName>ParticleSample</AssemblyName>
  12. <StartupObject>ParticleSample.Program</StartupObject>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugSymbols>True</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>False</Optimize>
  18. <OutputPath>bin\Debug</OutputPath>
  19. <DefineConstants>DEBUG</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <ConsolePause>False</ConsolePause>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>none</DebugType>
  26. <Optimize>False</Optimize>
  27. <OutputPath>bin\Release</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <ConsolePause>False</ConsolePause>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="System" />
  34. </ItemGroup>
  35. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  36. <ItemGroup>
  37. <None Include="Background.png">
  38. <Link>Background.png</Link>
  39. </None>
  40. <None Include="Game.ico">
  41. <Link>Game.ico</Link>
  42. </None>
  43. <None Include="GameThumbnail.png">
  44. <Link>GameThumbnail.png</Link>
  45. </None>
  46. <None Include="Content\explosion.png">
  47. <Link>Content\explosion.png</Link>
  48. </None>
  49. <None Include="Content\font.spritefont">
  50. <Link>Content\font.spritefont</Link>
  51. </None>
  52. <None Include="Content\smoke.bmp">
  53. <Link>Content\smoke.bmp</Link>
  54. </None>
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Compile Include="ExplosionParticleSystem.cs">
  58. <Link>ExplosionParticleSystem.cs</Link>
  59. </Compile>
  60. <Compile Include="ExplosionSmokeParticleSystem.cs">
  61. <Link>ExplosionSmokeParticleSystem.cs</Link>
  62. </Compile>
  63. <Compile Include="Particle.cs">
  64. <Link>Particle.cs</Link>
  65. </Compile>
  66. <Compile Include="ParticleSampleGame.cs">
  67. <Link>ParticleSampleGame.cs</Link>
  68. </Compile>
  69. <Compile Include="ParticleSystem.cs">
  70. <Link>ParticleSystem.cs</Link>
  71. </Compile>
  72. <Compile Include="SmokePlumeParticleSystem.cs">
  73. <Link>SmokePlumeParticleSystem.cs</Link>
  74. </Compile>
  75. <Compile Include="Program.cs" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <Content Include="Content\explosion.xnb">
  79. <Link>Content\explosion.xnb</Link>
  80. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  81. </Content>
  82. <Content Include="Content\font.xnb">
  83. <Link>Content\font.xnb</Link>
  84. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  85. </Content>
  86. <Content Include="Content\smoke.xnb">
  87. <Link>Content\smoke.xnb</Link>
  88. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  89. </Content>
  90. </ItemGroup>
  91. </Project>