Skip to content

Commit

Permalink
Ignore complaints from NuGet about out of support packages (#5415)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlock authored Apr 9, 2024
1 parent 5c6132d commit 17b24c3
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
<PropertyGroup>
<!-- Hide warnings for EOL .NET Core targets (e.g. netcoreapp3.0) -->
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<!-- Stop NuGet complaining about us targetting obsolete TFMs etc-->
<!-- Stop NuGet from complaining about vulnerable packages -->
<NuGetAudit>false</NuGetAudit>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<!-- Ignore complaints from NuGet about out of support packages-->
<NoWarn>NU1901;NU1902;NU1903;NU1904</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 17b24c3

Please sign in to comment.