SharpYaml
SharpYaml copied to clipboard
SharpYaml is a .NET library for YAML compatible with CoreCLR
Currently i want to make my output similar to PyYAML which makes nested types block and the rest default to flow style. I did attempt to create my yaml manually...
The `SerializerSettings.DefaultStyle` property seems to have no effect. The following code still produces a block syntax (SharpYaml v1.6.5.0): ``` var serializer = new Serializer(new SerializerSettings { DefaultStyle = YamlStyle.Flow });...
Please add a digital signature to SharpYaml.dll Digital signatures protect files from tampering, and enable users to verify the signer based on a signing certificate. Reference: [https://docs.microsoft.com/en-us/dotnet/framework/tools/signtool-exe](https://docs.microsoft.com/en-us/dotnet/framework/tools/signtool-exe) Update: our team...
pls help! i always get this kind of weird text behind my class object !Object.Test,%2520Object.Test,%2520Version=1.0.0.0,%2520Culture=neutral,%2520PublicKeyToken=null ObjectCollection:
I'm using the library to validate if a file is correctly formatted or not. Here is the simplified code: ```cs public static bool Validate(string filename) { try { var content...
In the Yaml 1.2 spec support for an escaped slash "\/" was added for JSON compatibility. Do you have any concerns with me creating a PR to fix this? We...
I am having an issue loading documents that use anchors to duplicate scalar values though `Model.YamlStream.Load(TextReader)`. A simple example of the format is: ``` field1: &data ABCD field2: *data ```...
Hi, Subject pretty much covers it. I am trying to serialize a class with string properties and want to out put them in the block style without quotes and "\r"...
I am using snake_case on an YAML file and deserializing it as follows: serializer = new Serializer(new SerializerSettings { DefaultStyle = YamlStyle.Block, EmitAlias = false, IndentLess = true, NamingConvention =...
Such as "category.object.parameter" retrieving the node at ```yaml category: object: parameter: "hello" ``` In all other YAML libraries I've used in other languages one can get a node by simply...