Skip to content

Commit

Permalink
Disable CS8717 until we can move to compiler toolset 3.5.0 or greater…
Browse files Browse the repository at this point in the history
… which has the fix for dotnet/roslyn#38638
  • Loading branch information
mavasani committed Nov 26, 2019
1 parent 8843092 commit ab6cb9b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
CS1712: Type parameter 'parameter' has no matching typeparam tag in the XML comment on 'type_or_member' (but other type parameters do)
-->
<NoWarn Condition="'$(Language)' == 'C#'">$(NoWarn),1573,1591,1712</NoWarn>

<!-- Disable CS8717 until we can move to compiler toolset 3.5.0 or greater which has the fix for https://github.com/dotnet/roslyn/issues/38638 -->
<NoWarn Condition="'$(Language)' == 'C#'">$(NoWarn),CS8717</NoWarn>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit ab6cb9b

Please sign in to comment.