YamlDotNet icon indicating copy to clipboard operation
YamlDotNet copied to clipboard

YamlDotNet is a .NET library for YAML

Results 197 YamlDotNet issues
Sort by recently updated
recently updated
newest added

This is a request to add support for inline style for sequences and mappings to both Parser and Emitter. An example of a [flow style block](https://yaml.org/spec/1.1/#id933010): `{name: John Smith, age:...

enhancement
help-wanted

Man, I really thank you for this amazing library. I have a complex structure of configs for a game project and this library is indispensable! I didn't find any exhaustive...

* http://www.yaml.org/spec/1.2/spec.html#id2782457 * http://stackoverflow.com/questions/38248697/how-to-serialize-deserialize-list-with-interface/38250533?noredirect=1#comment-72373677

bug

Hey aaubry, I think I might have found a small bug. I have a use case where i need to serialize a Yaml string as a property of another string....

### Code example https://dotnetfiddle.net/Es32Or ```csharp var yaml = @" object: &anchorName anchorValue another: *anchorName"; var parser = new MergingParser(new Parser(new StringReader(yaml))); while (parser.MoveNext()) { Console.WriteLine(parser.Current); } ``` Actual Output: ```...

Add async overloads of all methods that perform IO. I am opening this ticket because I feel that this should eventually be implemented. If this is a feature that would...

enhancement

Hey, Great library, thanks! Something that it lacks is the ability to easily rename a node. Unity does this via a _FormerlySerializedAs_ attribute. I'm sure it's not a big deal...

clientLog: server: {enabled: true, level: info} console: {enabled: true, level: debug} external: {enabled: false, level: info, url: 'https://LOG_HOST/html5Log', method: POST, throttleInterval: 400, flushOnClose: true, logTag: ''} How can we map...

`var deserializer = new Deserializer(namingConvention: new CamelCaseNamingConvention());` What is the purpose of `CamelCaseNamingConvention`. Is there any chat room or a mailing list for this project? :disappointed:

It would be great if the library could deserialize into properties of the following interfaces: * [`IReadOnlyCollection`](https://msdn.microsoft.com/en-us/library/hh881542(v=vs.110).aspx) * [`IReadOnlyList`](https://msdn.microsoft.com/en-us/library/hh192385(v=vs.110).aspx) * [`IReadOnlyDictionary`](https://msdn.microsoft.com/en-us/library/hh136548(v=vs.110).aspx)

enhancement