SYSLIB0020:IgnoreNullValues 已过时
从 .NET 6 开始,JsonSerializerOptions.IgnoreNullValues 属性标记为已过时。 在代码中使用会在编译时生成警告 SYSLIB0020
。
解决方法
若要在序列化时忽略 null 值,请将 DefaultIgnoreCondition 设为 JsonIgnoreCondition.WhenWritingNull。 有关详细信息,请参阅 https://github.com/dotnet/runtime/issues/39152。
抑制警告
如果必须使用已过时的 API,可在代码或项目文件中禁止显示警告。
若只想抑制单个冲突,请将预处理器指令添加到源文件以禁用该规则,然后重新启用警告。
// Disable the warning.
#pragma warning disable SYSLIB0020
// Code that uses obsolete API.
// ...
// Re-enable the warning.
#pragma warning restore SYSLIB0020
若要禁止显示项目中的所有 SYSLIB0020
警告,请将属性 <NoWarn>
添加到项目文件。
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
...
<NoWarn>$(NoWarn);SYSLIB0020</NoWarn>
</PropertyGroup>
</Project>
有关详细信息,请参阅取消警告。