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">
|
2025-04-23 16:09:51 -07:00
|
|
|
|
<Import Project=".\Common.Dotnet.PrepareGeneratedFolder.targets" />
|
|
|
|
|
|
|
2024-08-09 09:18:56 -07:00
|
|
|
|
<PropertyGroup>
|
2025-06-18 01:34:26 -07:00
|
|
|
|
<WindowsSdkPackageVersion>10.0.26100.68-preview</WindowsSdkPackageVersion>
|
|
|
|
|
|
<TargetFramework>net9.0-windows10.0.26100.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>
|
2025-05-14 12:15:19 -07:00
|
|
|
|
<WarningsNotAsErrors>CA1824;CA1416;CA1720;CA1859;CA2263;CA2022;MVVMTK0045;MVVMTK0049</WarningsNotAsErrors>
|
2024-08-09 09:18:56 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
2025-06-12 09:44:32 +08:00
|
|
|
|
<DebugType>portable</DebugType>
|
2024-08-09 09:18:56 -07:00
|
|
|
|
<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>
|
2025-06-12 09:44:32 +08:00
|
|
|
|
</Project>
|