Shapeshifter 1.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Shapeshifter --version 1.3.0
NuGet\Install-Package Shapeshifter -Version 1.3.0
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="Shapeshifter" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Shapeshifter --version 1.3.0
#r "nuget: Shapeshifter, 1.3.0"
#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 Shapeshifter as a Cake Addin
#addin nuget:?package=Shapeshifter&version=1.3.0

// Install Shapeshifter as a Cake Tool
#tool nuget:?package=Shapeshifter&version=1.3.0

Shapeshifter is a serialization library for long-term data storage. It offers the ease of storing data in serialized (JSON based) form while helping you handle object graph changes.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  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.3.2 1,193 11/27/2017
1.3.1 1,686 9/15/2015
1.3.0 1,155 3/16/2015
1.2.0 1,302 1/19/2015
1.1.0 1,286 1/16/2015
1.0.0 1,114 10/14/2014

*1.0.0
   Initial release

*1.1.0
 - Added support for non-static custom deserializers (see wiki for details)
 - Added ShapeshifterSerializerFactory class to simplify configuration
 
*1.2.0
 - Instance builder can be configured to enable the modification of an instance after it is read from the builder  
 - Non static custom deserializers can participate in a fix-up phase right before returning the deserialized object hierarchy
 - Bugfix: Snapshot did not take into account classes which only contained custom deserializers
 - Bugfix: Snapshot verbose flag did not list the assemblies processed
 - Small refactorings

*1.3.0
 - Modified descendant search to include all visited types. This way ForAllDescendant custom serializers can work without explicitly adding search scope during serializer creation. The most visible effect of this change is that enums now will work properly :-)
 - Bugfix Issue#5: snapshot.exe exits with -1 in case of error
 - Snapshot.exe extended with 'view' verb. It can be used to list names and corresponding versions from the current snapshot
 - Pretty formatting snapshot.exe generic type names  
 - Snapshot.exe entended with 'delete' verb which can be used to delete snapshots from the snapshot history file.
 - Snapshot.exe 'add' verb extended with a replace switch. It can be used to replace an existing snapshot in the snapshot history file.
 - Issue#6: InstanceBuilder now works in a deferred mode. Fields can be overwritten before actual instance creation.