We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3593874 commit eb7e0d5Copy full SHA for eb7e0d5
1 file changed
src/System.Private.Windows.Core/src/System.Private.Windows.Core.csproj
@@ -14,8 +14,9 @@
14
cross that bridge when we hit it (if ever).
15
-->
16
<NoWarn>$(NoWarn);CS8981</NoWarn>
17
- <!-- Reenable when VRM SDK version contains fis for "reference-like" types -->
18
- <NoWarn Condition="'$(DotNetBuild)' == 'true'">$(NoWarn);IDE0059</NoWarn>
+ <!-- Reenable IDE0059 when VRM SDK version contains the fix for "reference-like" types -->
+ <!-- Reenable IDE0082 when VRM SDK version contains the fix for typeof/nameof support for generics -->
19
+ <NoWarn Condition="'$(DotNetBuild)' == 'true'">$(NoWarn);IDE0059;IDE0082</NoWarn>
20
<!--
21
CS3016: We don't care about CLS compliance since everything here is internal and we want to match native types.
22
SYSLIB5005: System.Formats.Nrbf is experimental
0 commit comments