stride/samples/Graphics/CustomEffect/CustomEffect.Windows/CustomEffect.Windows.csproj

65 lines
2.8 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>CustomEffect</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)..\CustomEffect.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>
2018-08-01 09:09:07 +00:00
<OutputPath>..\Bin\Windows\Debug\</OutputPath>
2018-06-19 09:06:54 +00:00
<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>
2018-08-01 09:09:07 +00:00
<OutputPath>..\Bin\Windows\Release\</OutputPath>
2018-06-19 09:06:54 +00:00
<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>
2018-08-01 09:09:07 +00:00
<OutputPath>..\Bin\Windows\Testing\</OutputPath>
2018-06-19 09:06:54 +00:00
<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>
2018-08-01 09:09:07 +00:00
<OutputPath>..\Bin\Windows\AppStore\</OutputPath>
2018-06-19 09:06:54 +00:00
<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="..\CustomEffect.Game\CustomEffect.Game.csproj" />
2018-06-19 09:06:54 +00:00
</ItemGroup>
2018-08-01 09:09:07 +00:00
</Project>