msgpack-cli
msgpack-cli copied to clipboard
Not backwards compatible when adding new property using DataMember attribute
[DataMember(IsRequired = false)] public string NewField { get; set; }
It seems adding a new field is not supported. Got an exception "Input string was not in a correct format"
IsRequired of [DataMember] is not supported for backward compatibility methods now, you can get compatibility when you set SerializationMethod to Map instead of Array on SerializationContext.