Skip to content

Commit

Permalink
suppress nuget package generation warnings NU5131 and NU5128 (dotnet#…
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamYoblick authored and mmitche committed Nov 22, 2019
1 parent f8c3968 commit d66c8e8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<EnableDefaultItems>false</EnableDefaultItems>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>

<!-- Suppress some nuget warnings that are breaking our build until https://github.com/dotnet/arcade/issues/4337 is resolved -->
<NoWarn>$(NoWarn);NU5131;NU5128</NoWarn>

<!-- Opt-out repo features -->
<UsingToolXliff>false</UsingToolXliff>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
<TargetFrameworkName>netcoreapp</TargetFrameworkName>
<TargetFrameworkVersion>3.0</TargetFrameworkVersion>
<TargetFramework>$(TargetFrameworkName)$(TargetFrameworkVersion)</TargetFramework>

<!-- Suppress some nuget warnings that are breaking our build until https://github.com/dotnet/arcade/issues/4337 is resolved -->
<NoWarn>$(NoWarn);NU5131;NU5128</NoWarn>

</PropertyGroup>

<!-- This is a Packaging Project -->
Expand Down

0 comments on commit d66c8e8

Please sign in to comment.