79031da543
Spell checking / Check Spelling (push) Has been cancelled
Spell checking / Update PR (push) Has been cancelled
Publish Dev Docs Website / build (push) Failing after 1s
Publish Dev Docs Website / deploy (push) Has been skipped
Spell checking / Report (Push) (push) Has been cancelled
Spell checking / Report (PR) (push) Has been cancelled
48 lines
1.9 KiB
XML
48 lines
1.9 KiB
XML
<?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">
|
||
<Import Project=".\Common.Dotnet.PrepareGeneratedFolder.targets" />
|
||
|
||
<PropertyGroup>
|
||
<CoreTargetFramework>net10.0</CoreTargetFramework>
|
||
<WindowsSdkPackageVersion>10.0.26100.68-preview</WindowsSdkPackageVersion>
|
||
<TargetFramework>$(CoreTargetFramework)-windows10.0.26100.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>CA1824;CA1416;CA1720;CA1859;CA2263;CA2022;MVVMTK0045;MVVMTK0049</WarningsNotAsErrors>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
||
<DebugSymbols>true</DebugSymbols>
|
||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||
<DebugType>portable</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>
|
||
|
||
<!-- 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>
|
||
</Project>
|