2024-08-09 09:18:56 -07:00
|
|
|
|
<?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>
|
2024-09-12 09:30:44 -07:00
|
|
|
|
<WindowsSdkPackageVersion>10.0.22621.38</WindowsSdkPackageVersion>
|
|
|
|
|
|
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
|
2024-08-09 09:18:56 -07:00
|
|
|
|
<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>
|
2024-09-11 08:36:34 -07:00
|
|
|
|
|
|
|
|
|
|
<!-- this may need to be removed on future CsWinRT upgrades-->
|
|
|
|
|
|
<Target Name="RemoveCsWinRTPackageAnalyzer" BeforeTargets="CoreCompile">
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Analyzer Remove="@(Analyzer)" Condition="%(Analyzer.NuGetPackageId) == 'Microsoft.Windows.CsWinRT'" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Target>
|
2024-08-09 09:18:56 -07:00
|
|
|
|
</Project>
|