YamlDotNet icon indicating copy to clipboard operation
YamlDotNet copied to clipboard

YamlDotNet is a .NET library for YAML

Results 233 YamlDotNet issues
Sort by recently updated
recently updated
newest added
trafficstars

YamlDotNet 16.3.0 **Describe the bug** I'm not very experienced with YAML, but (according to references like [https://ref.coddy.tech/yaml/yaml-null-values](https://ref.coddy.tech/yaml/yaml-null-values)) my understanding is that a key like `foo:` should produce a `null` value,...

**Is your feature request related to a problem? Please describe.** At present, the naming conventions all assume that you're converting from one naming convention to another, this is fine in...

This cuts about 20% of parsing cost and probably more in final object graph size, depending on input data. In terms of the LoadLarge benchmark: | Method | Mean |...

Most JSON parsers now support comments, and there's a new filetype, [JSONC](https://jsonc.org/), which explicitly supports comments. To stay compatible with JSON/JSONC implementations, it would be nice if YamlDotNet supported JSON...

**Describe the bug** It looks like the `IsBreak` treats `CRLF` different from `LF`: **To Reproduce** crlf, fails on the chomping character, not on the newline character: ```csharp var yaml =...

In response to the issues mentioned in #1043 and #1045, I have written two corresponding unit tests. The solution is to cache the buffered parsers in a way similar to...

It seems that the anchor of yaml cannot be used to insert content into a list, so I want to reference repeated content and add new content to the list...

**Describe the bug** I tried to use anchor to simplify the repetitive content in my yaml configuration. I thought anchor just represented repeated yaml text content, but I found that...

I'm trying to deserialize `docker-compose.yaml` from `dify` project. Consider follow classes: ``` class DockerComposeFile { [YamlMember(Alias = "x-shared-env")] public Dictionary XSharedEnv { get; set; } public Dictionary Services { get;...

Fix grammar in comments. 修复注释中的语法