Afterburner.Serialization 0.7.0

dotnet add package Afterburner.Serialization --version 0.7.0
NuGet\Install-Package Afterburner.Serialization -Version 0.7.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="Afterburner.Serialization" Version="0.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Afterburner.Serialization --version 0.7.0
#r "nuget: Afterburner.Serialization, 0.7.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 Afterburner.Serialization as a Cake Addin
#addin nuget:?package=Afterburner.Serialization&version=0.7.0

// Install Afterburner.Serialization as a Cake Tool
#tool nuget:?package=Afterburner.Serialization&version=0.7.0

This prerelease version contains an optimized serializer serializing:
• Value Types
• Strings
• System.Collections (most types)
• System.Collections.Generic(most types)
• Types implementing IEnumerable.

All versions have the optimized serializer core and specific optimizations for many types in place. Versions 0.8.0 and higher will have specific optimizations for all System.Collections.* and primitive types targeted in 1.0 release in place. Versions 0.9.0 and higher will include an optimized deserializer. Versions below this level will include a version of Mehdi Gholam's fastJson deserializer. The 1.0.0 milestone will include .NETs highest performance serializer/deserializer and the full initial set of configurable settings. Future versions to include more configuration/customization options and dynamic support.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  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.

This package has no dependencies.

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
0.7.0 1,868 6/14/2015

0.7.0.0 Update includes bug fixes for primitives and primitive arrays. It additionally includes limited support new configuration options: SmallPotatoes, SerializeSchema. The API has reverted to the pre-release version where you must explictly bake your serializer before using it. Ex: var serializer = JsonSerializationFactory.GetSerializer<MyType>(); serializer.Serialize(MyType);