I see that the premise is that the API is the same as that of System.Text.Json, but I notice that it doesn't include the Condition property:
System.Text.Json.JsonIgnoreAttribute:
https://github.com/dotnet/runtime/blob/b82454cad0aaaae3db2cf18fbf2cccc36e201ccc/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Attributes/JsonIgnoreAttribute.cs#L16
SharpYaml.Serialization.YamlIgnoreAttribute:
|
public sealed class YamlIgnoreAttribute : YamlAttribute |
As a workaround, since it's compatible with the System.Text.Json API, I'm using JsonIgnore, but it's not ideal.
I see that the premise is that the API is the same as that of System.Text.Json, but I notice that it doesn't include the
Conditionproperty:System.Text.Json.JsonIgnoreAttribute:
https://github.com/dotnet/runtime/blob/b82454cad0aaaae3db2cf18fbf2cccc36e201ccc/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Attributes/JsonIgnoreAttribute.cs#L16
SharpYaml.Serialization.YamlIgnoreAttribute:
SharpYaml/src/SharpYaml/Serialization/YamlIgnoreAttribute.cs
Line 13 in 59c83b6
As a workaround, since it's compatible with the System.Text.Json API, I'm using
JsonIgnore, but it's not ideal.