Skip to content
Prev Previous commit
Next Next commit
Suppressing null warnings on non NetCoreApp targets
  • Loading branch information
buyaa-n committed Nov 19, 2019
commit 5015584fb4aefd13a666b37a7d4f477dde02ffe6
1 change: 1 addition & 0 deletions src/libraries/System.Text.Json/src/System.Text.Json.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<!-- https://github.com/dotnet/arcade/blob/ea6addfdc65e5df1b2c036f11614a5f922e36267/src/Microsoft.DotNet.Arcade.Sdk/tools/ProjectDefaults.props#L90 -->
<!-- For this project, we want warnings if there are public APIs/types without properly formatted XML comments (particularly CS1591). -->
<NoWarn />
<NoWarn Condition="'$(TargetsNetCoreApp)' != 'true'">$(NoWarn);8600;8601;8602;8603;8604</NoWarn>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
Expand Down