You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
System.Text.Json is significantly faster than YamlSharp for parsing JSON and it doesn't have an issue with the key length limit that
YamlSharp has. #786
This will require detecting if the description being read is JSON or YAML which we can do from either the file extension or the content-type header.
We need to investigate what will be required to implement a new set of parse nodes that wrap a JsonDocument.
The text was updated successfully, but these errors were encountered:
System.Text.Json is significantly faster than YamlSharp for parsing JSON and it doesn't have an issue with the key length limit that
YamlSharp has. #786
This will require detecting if the description being read is JSON or YAML which we can do from either the file extension or the content-type header.
We need to investigate what will be required to implement a new set of parse nodes that wrap a JsonDocument.
The text was updated successfully, but these errors were encountered: