Skip to content

Commit eb7e0d5

Browse files
Disable IDE0082 in the VMR build (#13143)
re-introduce #12881 to support the VMR build
1 parent 3593874 commit eb7e0d5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/System.Private.Windows.Core/src/System.Private.Windows.Core.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@
1414
cross that bridge when we hit it (if ever).
1515
-->
1616
<NoWarn>$(NoWarn);CS8981</NoWarn>
17-
<!-- Reenable when VRM SDK version contains fis for "reference-like" types -->
18-
<NoWarn Condition="'$(DotNetBuild)' == 'true'">$(NoWarn);IDE0059</NoWarn>
17+
<!-- Reenable IDE0059 when VRM SDK version contains the fix for "reference-like" types -->
18+
<!-- Reenable IDE0082 when VRM SDK version contains the fix for typeof/nameof support for generics -->
19+
<NoWarn Condition="'$(DotNetBuild)' == 'true'">$(NoWarn);IDE0059;IDE0082</NoWarn>
1920
<!--
2021
CS3016: We don't care about CLS compliance since everything here is internal and we want to match native types.
2122
SYSLIB5005: System.Formats.Nrbf is experimental

0 commit comments

Comments
 (0)