stride/samples/Particles/ParticlesSample/ParticlesSample.Windows/ParticlesSample.Windows.csproj
2018-06-19 18:07:32 +09:00

100 lines
5.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{BDDD6C01-7873-4066-BC52-3E5847FE9F39}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ParticlesSample</RootNamespace>
<AssemblyName>ParticlesSample</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
<XenkoPackageGuid>{2b920979-d010-44fa-a415-e52d97e51df3}</XenkoPackageGuid>
<!-- Force msbuild to check to rebuild this assembly instead of letting VS IDE guess -->
<DisableFastUpToDateCheck>true</DisableFastUpToDateCheck>
<XenkoRuntime></XenkoRuntime>
</PropertyGroup>
<PropertyGroup>
<XenkoCurrentPackagePath>$(MSBuildThisFileDirectory)..\ParticlesSample.xkpkg</XenkoCurrentPackagePath>
<XenkoPackageProps>$([System.IO.Path]::ChangeExtension('$(XenkoCurrentPackagePath)', '.props'))</XenkoPackageProps>
<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>
</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>
</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>
</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>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Resources\Icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Condition="'$(XenkoRuntime)' == ''" Include="System" />
<Reference Condition="'$(XenkoRuntime)' == ''" Include="System.Core" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ParticlesSample.Game\ParticlesSample.Game.csproj">
<Project>{c821e6b2-04b2-4983-8348-7ac37b23c5e1}</Project>
<Name>ParticlesSample.Game</Name>
<Private>False</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="ParticlesSampleApp.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\Icon.ico" />
</ItemGroup>
<Import Condition="'$(XenkoRuntime)' == ''" Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(XenkoPackageProps)" Condition="Exists('$(XenkoPackageProps)')" />
<Import Project="$(XenkoDir)\Targets\Xenko.Common.targets" Condition="Exists('$(XenkoDir)\Targets\Xenko.Common.targets')" />
<Target Name="EnsureXenkoInstalled" BeforeTargets="PrepareForBuild">
<Error Condition="'$(XenkoDir)' == ''" Text="Xenko SDK was not found. Check Xenko is installed and the global env variable [XenkoDir] is setup correctly" />
<Error Condition="!Exists('$(XenkoDir)\Targets\Xenko.Common.targets')" Text="Invalid Xenko SDK installation. Target file [$(XenkoDir)\Targets\Xenko.Common.targets] was not found." />
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>