mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<!-- Some items may be set in Directory.Build.props in root -->
|
||
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net8.0-windows10.0.20348.0</TargetFramework>
|
||
|
|
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
|
||
|
|
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
|
||
|
|
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<!-- Common from the debug / release items -->
|
||
|
|
<PropertyGroup>
|
||
|
|
<WarningLevel>4</WarningLevel>
|
||
|
|
<NoWarn></NoWarn>
|
||
|
|
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
|
||
|
|
<WarningsNotAsErrors>CA1720</WarningsNotAsErrors>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
||
|
|
<DebugSymbols>true</DebugSymbols>
|
||
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||
|
|
<DebugType>full</DebugType>
|
||
|
|
<Optimize>false</Optimize>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
||
|
|
<ErrorReport>prompt</ErrorReport>
|
||
|
|
<DefineConstants>RELEASE;TRACE</DefineConstants>
|
||
|
|
<DebugType>pdbonly</DebugType>
|
||
|
|
<Optimize>true</Optimize>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.Windows.CsWinRT" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|