Skip to content

Commit 988e3c7

Browse files
authored
fix package restore on dotnet sdk 8.0.303 (#1311)
1 parent 2205fb3 commit 988e3c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PackageLicenseExpression Condition=" '$(PackAsTool)' != 'true' ">Apache-2.0</PackageLicenseExpression>
77
<NoWarn>$(NoWarn);3186,0042</NoWarn><!-- circumvent an error with the fake dependencymanager for
88
paket: https://github.com/dotnet/fsharp/issues/8678 -->
9-
<NoWarn>$(NoWarn);NU1902</NoWarn><!-- NU1902 - package vulnerability detected -->
9+
<NoWarn>$(NoWarn);NU1901;NU1902;NU1903;NU1904</NoWarn><!-- NU1901-NU1904 - package vulnerability detected (low, moderate, high, critical) -->
1010
<NoWarn>$(NoWarn);57</NoWarn> <!-- Enable experimental compiler features -->
1111
<WarnOn Condition="'$(Configuration)' != 'Debug'">$(WarnOn);1182</WarnOn> <!-- Unused
1212
variables,https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/compiler-options#opt-in-warnings -->

0 commit comments

Comments
 (0)