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

The ones I found were tilde, tab, and newline by themselves, or newline within a string. I'm unclear on the correct fix, so I don't have a PR for you,...

bug

Some of the v1.1 types are supported by the base parser, while others are not: https://yaml.org/type/. For instance, we can implement `!!merge` or `Merge Key Language-Independent Type` in base parser...

```C# public abstract class CfgFileBase { [YamlIgnore] public virtual string Path {get;set;} = @"C:\settings.yaml"; [YamlIgnore] public virtual xxx xxx1 {get;set;} //... [YamlIgnore] public virtual xxx xxx20 {get;set;} } public class...

bug

The current interface of IYamlTypeConverter one cannot deserialize a type that contains other types. Unlike that interface INodeDeserializer, the interface does not receive a nested object deserializer (Func nestedObjectDeserializer). This...

enhancement

Although there is already an attribute YamlMember, DataMember does not depend on Yaml, and allows one to have consistent serialized field names in YamlDotNet and System.Text.Json Best regards.

enhancement
good-first-issue

Is there a way to combine a EventEmitter with a TypeConverter ? The use case is that all string values should have quotes, and that a DateTime should be displayed...

enhancement

I cannot figure out how to parse a YAML file with this structure: HeightSensor: [0 cm, 1 cm]: - - set - HeightSensor - frequency: 10 sec The "[0 cm,...

I am using YamlDotNet to deserialize a yml file into a custom object. For certain strings I'd like to append some prefix on the result. For example, my custom class...

I have the following class: public class Post { public Int32 Id { get; set; } public String Title { get; set; } public List Tags { get; set; }...

enhancement

I have the following yaml: ```yaml --- swagger: "2.0" info: title: "AccountService" description: "" x-ibm-name: "accountservice" version: "1.0.0" schemes: - "https" basePath: "/AccountService" produces: - "application/xml" consumes: - "text/xml" securityDefinitions:...

question