stride/samples/Particles/ParticlesSample/ParticlesSample.Windows/ParticlesSample.Windows.csproj

65 lines
2.9 KiB
XML
Raw Normal View History

2018-08-01 09:09:07 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2018-06-19 09:06:54 +00:00
<PropertyGroup>
2018-08-01 09:09:07 +00:00
<TargetFramework>net461</TargetFramework>
<ApplicationIcon>Resources\Icon.ico</ApplicationIcon>
2018-06-19 09:06:54 +00:00
<OutputType>WinExe</OutputType>
<RootNamespace>ParticlesSample</RootNamespace>
2018-08-01 09:09:07 +00:00
<OutputPath>..\Bin\Windows\$(Configuration)\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
2018-06-19 09:06:54 +00:00
</PropertyGroup>
<PropertyGroup>
<XenkoCurrentPackagePath>$(MSBuildThisFileDirectory)..\ParticlesSample.xkpkg</XenkoCurrentPackagePath>
<XenkoProjectType>Executable</XenkoProjectType>
<XenkoPlatform>Windows</XenkoPlatform>
<XenkoBuildProfile>Windows</XenkoBuildProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE;XENKO_PLATFORM_WINDOWS;XENKO_PLATFORM_WINDOWS_DESKTOP</DefineConstants>
<OutputPath>..\Bin\Windows\Debug\</OutputPath>
<IntermediateOutputPath>obj\Windows\Debug\</IntermediateOutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2018-08-01 09:09:07 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2018-06-19 09:06:54 +00:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE;XENKO_PLATFORM_WINDOWS;XENKO_PLATFORM_WINDOWS_DESKTOP</DefineConstants>
<OutputPath>..\Bin\Windows\Release\</OutputPath>
<IntermediateOutputPath>obj\Windows\Release\</IntermediateOutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2018-08-01 09:09:07 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2018-06-19 09:06:54 +00:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Testing|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE;XENKO_PLATFORM_WINDOWS;XENKO_PLATFORM_WINDOWS_DESKTOP</DefineConstants>
<OutputPath>..\Bin\Windows\Testing\</OutputPath>
<IntermediateOutputPath>obj\Windows\Testing\</IntermediateOutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2018-08-01 09:09:07 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2018-06-19 09:06:54 +00:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE;XENKO_PLATFORM_WINDOWS;XENKO_PLATFORM_WINDOWS_DESKTOP</DefineConstants>
<OutputPath>..\Bin\Windows\AppStore\</OutputPath>
<IntermediateOutputPath>obj\Windows\AppStore\</IntermediateOutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2018-08-01 09:09:07 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2018-06-19 09:06:54 +00:00
</PropertyGroup>
2018-08-01 09:09:07 +00:00
2018-06-19 09:06:54 +00:00
<ItemGroup>
2018-08-01 09:09:07 +00:00
<ProjectReference Include="..\ParticlesSample.Game\ParticlesSample.Game.csproj" />
2018-06-19 09:06:54 +00:00
</ItemGroup>
2018-08-01 09:09:07 +00:00
2018-06-19 09:06:54 +00:00
</Project>