Shapeshifter 1.3.0
dotnet add package Shapeshifter --version 1.3.0
NuGet\Install-Package Shapeshifter -Version 1.3.0
<PackageReference Include="Shapeshifter" Version="1.3.0" />
paket add Shapeshifter --version 1.3.0
#r "nuget: Shapeshifter, 1.3.0"
// 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 | Versions 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. |
-
- Newtonsoft.Json (>= 6.0.2)
GitHub repositories
This package is not used by any popular GitHub repositories.
*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.