We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85a091d commit f5978d6Copy full SHA for f5978d6
src/DotNetCampus.CommandLine/DotNetCampus.CommandLine.csproj
@@ -22,9 +22,15 @@
22
</PropertyGroup>
23
24
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
25
+ <!-- nullable annotations is not fully supported in netstandard2.0 -->
26
<NoWarn>$(NoWarn);CS8767</NoWarn>
27
28
29
+ <PropertyGroup Condition="'$(TargetFramework)' == 'net6.0'">
30
+ <!-- https://github.com/dotnet/runtime/issues/96313 -->
31
+ <NoWarn>$(NoWarn);CS8785</NoWarn>
32
+ </PropertyGroup>
33
+
34
<ItemGroup>
35
<InternalsVisibleTo Include="DotNetCampus.CommandLine.Tests" />
36
</ItemGroup>
0 commit comments