SharpYaml is a .NET library for YAML
Перейти к файлу
Alexandre Mutel df7c220db8 Start to rewrite serialization (WIP) 2013-10-05 00:20:53 +09:00
.nuget
Dumper Start to rewrite serialization (WIP) 2013-10-05 00:20:53 +09:00
YAMLLanguage
YamlDotNet Start to rewrite serialization (WIP) 2013-10-05 00:20:53 +09:00
YamlDotNet.Configuration Start to rewrite serialization (WIP) 2013-10-05 00:20:53 +09:00
YamlDotNet.Converters Rename YamlDotNet.Core to YamlDotNet. Rename YamlDotNet.RepresentationModel to YamlDotNet.Serialization 2013-10-01 22:05:33 +09:00
YamlDotNet.Converters.Test Start to rewrite serialization (WIP) 2013-10-05 00:20:53 +09:00
YamlDotNet.Core.Test Start to rewrite serialization (WIP) 2013-10-05 00:20:53 +09:00
YamlDotNet.Core2 Rename YamlDotNet.Core to YamlDotNet. Rename YamlDotNet.RepresentationModel to YamlDotNet.Serialization 2013-10-01 22:05:33 +09:00
YamlDotNet.Dynamic Rename YamlDotNet.Core to YamlDotNet. Rename YamlDotNet.RepresentationModel to YamlDotNet.Serialization 2013-10-01 22:05:33 +09:00
YamlDotNet.Dynamic.UnitTests Rename YamlDotNet.Core to YamlDotNet. Move files from RepresentationModel to YamlDotNet.Serialization 2013-10-01 21:58:37 +09:00
YamlDotNet.RepresentationModel.Test Start to rewrite serialization (WIP) 2013-10-05 00:20:53 +09:00
YamlDotNet.Samples Start to rewrite serialization (WIP) 2013-10-05 00:20:53 +09:00
YamlDotNetEditor
doc/html
support
.gitignore
CommonAssemblyInfo.cs
LICENSE
LICENSE-libyaml
README.md
VERSION
YamlDotNet.Converters.nuspec
YamlDotNet.Core.nuspec
YamlDotNet.Dynamic.nuspec
YamlDotNet.FxCop
YamlDotNet.RepresentationModel.nuspec
YamlDotNet.build
YamlDotNet.mono.sln
YamlDotNet.shfbproj
YamlDotNet.sln Start to rewrite serialization (WIP) 2013-10-05 00:20:53 +09:00
YamlDotNet.snk

README.md

YamlDotNet

YamlDotNet is a .NET library for YAML. YamlDotNet provides low level parsing and emitting of YAML as well as a high level object model similar to XmlDocument. A serialization library is also included that allows to read and write objects from and to YAML streams.

What is YAML?

YAML, which stands for "YAML Ain't Markup Language", is described as "a human friendly data serialization standard for all programming languages". Like XML, it allows to represent about any kind of data in a portable, platform-independent format. Unlike XML, it is "human friendly", which means that it is easy for a human to read or produce a valid YAML document.

The YamlDotNet library

The library has now been successfully used in multiple projects and is considered fairly stable.

Where to get it?

The most up-to-date version can always be found in the following NuGet packages:

Changelog

Version 2.0.0

  • YamlSerializer has been replaced by the Deserializer class. It offer the same functionality of YamlSerializer but is easier to maintain and extend.

    • Breaking change: DeserializationOverrides is no longer supported. If you need this, please file a bug and we will analyze it.
    • Breaking change: IDeserializationContext is no longer supported. If you need this, please file a bug and we will analyze it.
    • Tag mappings are registered directly on the Deserializer using RegisterTagMapping()
    • ObjectFactory is specified in the constructor, if required.
  • Bug fixes to the Serializer:

    • Fix bug when serializing lists with nulls inside. e9019d5f22
  • Adds a YAML editor add-in for Visual Studio 2012. Available on the Visual Studio Gallery.