Persist 1.0.0.26407

There is a newer version of this package available.
See the version list below for details.
dotnet add package Persist --version 1.0.0.26407
NuGet\Install-Package Persist -Version 1.0.0.26407
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Persist" Version="1.0.0.26407" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Persist --version 1.0.0.26407
#r "nuget: Persist, 1.0.0.26407"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Persist as a Cake Addin
#addin nuget:?package=Persist&version=1.0.0.26407

// Install Persist as a Cake Tool
#tool nuget:?package=Persist&version=1.0.0.26407

Persist is a .Net serializer/deserializer supporting references to/from XML/Json/Yaml formats

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0.26437 1,589 6/20/2016
1.0.0.26432 1,398 6/20/2016
1.0.0.26411 1,461 6/5/2016
1.0.0.26407 1,452 6/4/2016
1.0.0.26315 1,510 6/3/2016
1.0.0.26212 1,431 6/1/2016
1.0.0.26097 1,543 5/30/2016
1.0.0.26096 1,140 5/30/2016
1.0.0.26085 1,174 5/30/2016
1.0.0.26082 1,167 5/30/2016
1.0.0.26045 1,150 5/28/2016
1.0.0.26004 1,154 5/28/2016
1.0.0.25376 1,169 5/28/2016
1.0.0.5917 1,166 5/29/2016
1.0.0.5713 1,170 5/29/2016

-Fixed nested containers serialization
-Now YamlArchive and JsonArchive support Anonymous containers


Can Serialize/Deserialize:
- Arbitrary custom types, native types, anonymous types, enums, IDictionary, IList, IConvertible
- Multiply and possibly cyclical references to objects
- Polymorphic objects
- External types using metadata to specify the properties to use
- Evolving types : you can add or remove properties/fields with no problem
- Xml, Json, Yaml and any format you want because it is extensible
- To/From a generic Node object that you can add/remove attributes and children
- Using a PersistAttribute that allows you to:
- Change the member name
- Specify if serialize/deserialize as a reference
- Ignore a member

Features:
- Serialize and Deserialize any .Net object with Persist's powerful serializer
- Since the metadata for the type is created on the constructor
serialization and deserialization is really fast
- Persist is open source so you can contribute and completely free for comercial use
- Create, parse, query and modify archives using Persist's Node and NodeAttribute objects
- Serialization of objects with references is clearer and smaller than Newtonsoft Json.net library
- Easy to use, comes with a static ArchiveUtils class with a lot of helper methods
- if you need it Persist supports conversion between all of the 3 data formats ( xml, yaml, json)

check more documentation at https://github.com/elios264/Persist