We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b94a66 commit a808e65Copy full SHA for a808e65
MultiTarget/WinUI.Extra.props
@@ -38,6 +38,11 @@
38
<!-- These suppressions are for references between generated assemblies and that VS can keep in the Error List once resolved -->
39
<NoWarn>$(NoWarn);WMC1006;CS8034;</NoWarn>
40
</PropertyGroup>
41
+
42
+ <!-- Disable warnings for 'This call site is reachable on all platforms.' caused by underlying platform. -->
43
+ <PropertyGroup Condition="'$(IsUwp)' == 'true' AND $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
44
+ <NoWarn>$(NoWarn);CA1416;</NoWarn>
45
+ </PropertyGroup>
46
47
<ItemGroup>
48
<Compile Include="$(ToolingDirectory)\GlobalUsings_WinUI.cs" />
0 commit comments