ParticleSample.Linux.csproj 3.5 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)' == '' ">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. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug</OutputPath>
  20. <DefineConstants>DEBUG</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. <ConsolePause>false</ConsolePause>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>none</DebugType>
  27. <Optimize>false</Optimize>
  28. <OutputPath>bin\Release</OutputPath>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. <ConsolePause>false</ConsolePause>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. </ItemGroup>
  36. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  37. <ItemGroup>
  38. <None Include="Background.png">
  39. <Link>Background.png</Link>
  40. </None>
  41. <None Include="Game.ico">
  42. <Link>Game.ico</Link>
  43. </None>
  44. <None Include="GameThumbnail.png">
  45. <Link>GameThumbnail.png</Link>
  46. </None>
  47. <None Include="Content\explosion.png">
  48. <Link>Content\explosion.png</Link>
  49. </None>
  50. <None Include="Content\font.spritefont">
  51. <Link>Content\font.spritefont</Link>
  52. </None>
  53. <None Include="Content\smoke.bmp">
  54. <Link>Content\smoke.bmp</Link>
  55. </None>
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="ExplosionParticleSystem.cs">
  59. <Link>ExplosionParticleSystem.cs</Link>
  60. </Compile>
  61. <Compile Include="ExplosionSmokeParticleSystem.cs">
  62. <Link>ExplosionSmokeParticleSystem.cs</Link>
  63. </Compile>
  64. <Compile Include="Particle.cs">
  65. <Link>Particle.cs</Link>
  66. </Compile>
  67. <Compile Include="ParticleSampleGame.cs">
  68. <Link>ParticleSampleGame.cs</Link>
  69. </Compile>
  70. <Compile Include="ParticleSystem.cs">
  71. <Link>ParticleSystem.cs</Link>
  72. </Compile>
  73. <Compile Include="SmokePlumeParticleSystem.cs">
  74. <Link>SmokePlumeParticleSystem.cs</Link>
  75. </Compile>
  76. <Compile Include="Program.cs" />
  77. </ItemGroup>
  78. <ItemGroup>
  79. <ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.Linux.csproj">
  80. <Project>{35253CE1-C864-4CD3-8249-4D1319748E8F}</Project>
  81. <Name>MonoGame.Framework.Linux</Name>
  82. </ProjectReference>
  83. </ItemGroup>
  84. <ItemGroup>
  85. <Content Include="Content\explosion.xnb">
  86. <Link>Content\explosion.xnb</Link>
  87. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  88. </Content>
  89. <Content Include="Content\font.xnb">
  90. <Link>Content\font.xnb</Link>
  91. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  92. </Content>
  93. <Content Include="Content\smoke.xnb">
  94. <Link>Content\smoke.xnb</Link>
  95. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  96. </Content>
  97. </ItemGroup>
  98. </Project>