12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>10.0.0</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{EB1F36EC-5DB8-41AC-AB99-E9337239A9F9}</ProjectGuid>
- <OutputType>Exe</OutputType>
- <RootNamespace>ParticleSample</RootNamespace>
- <AssemblyName>ParticleSample</AssemblyName>
- <StartupObject>ParticleSample.Program</StartupObject>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>True</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>False</Optimize>
- <OutputPath>bin\Debug</OutputPath>
- <DefineConstants>DEBUG</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>False</ConsolePause>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>none</DebugType>
- <Optimize>False</Optimize>
- <OutputPath>bin\Release</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <ConsolePause>False</ConsolePause>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <ItemGroup>
- <None Include="Background.png">
- <Link>Background.png</Link>
- </None>
- <None Include="Game.ico">
- <Link>Game.ico</Link>
- </None>
- <None Include="GameThumbnail.png">
- <Link>GameThumbnail.png</Link>
- </None>
- <None Include="Content\explosion.png">
- <Link>Content\explosion.png</Link>
- </None>
- <None Include="Content\font.spritefont">
- <Link>Content\font.spritefont</Link>
- </None>
- <None Include="Content\smoke.bmp">
- <Link>Content\smoke.bmp</Link>
- </None>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="ExplosionParticleSystem.cs">
- <Link>ExplosionParticleSystem.cs</Link>
- </Compile>
- <Compile Include="ExplosionSmokeParticleSystem.cs">
- <Link>ExplosionSmokeParticleSystem.cs</Link>
- </Compile>
- <Compile Include="Particle.cs">
- <Link>Particle.cs</Link>
- </Compile>
- <Compile Include="ParticleSampleGame.cs">
- <Link>ParticleSampleGame.cs</Link>
- </Compile>
- <Compile Include="ParticleSystem.cs">
- <Link>ParticleSystem.cs</Link>
- </Compile>
- <Compile Include="SmokePlumeParticleSystem.cs">
- <Link>SmokePlumeParticleSystem.cs</Link>
- </Compile>
- <Compile Include="Program.cs" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Content\explosion.xnb">
- <Link>Content\explosion.xnb</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="Content\font.xnb">
- <Link>Content\font.xnb</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="Content\smoke.xnb">
- <Link>Content\smoke.xnb</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|