aqlaserializer 2.0.0.239

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

// Install aqlaserializer as a Cake Tool
#tool nuget:?package=aqlaserializer&version=2.0.0.239

AqlaSerializer is intended to serialize objects, not just data.

What the difference? Data serializers don't care much about language runtime specifics like references, inheritance, etc. In contrast, an object serializer should take such things into account.

AqlaSerializer primary goal is to support important .NET features like nested collections, multi-dimensional arrays, references, etc. And it still supports Google Protocol Buffers format.

Like protobuf-net AqlaSerializer makes possible to store objects as a small in size binary data (far smaller than xml). And it's more CPU effective than BinaryFormatter and other core .NET serializers (which could be unavailable on your target platform). Its format is designed to be: small in size - efficient data storage (far smaller than xml) cheap to process - both at the client and server platform independent - portable between different programming architectures extensible - to add new data to old messages.

The implementation is compatible with most of the .NET family, including .NET 2.0/3.0/3.5/4.0, Windows Phone 8, Silverlight, Xamarin.Android, etc. The code is heavily based on Marc Gravell's protobuf-net but there are a lot of improvements and fixes.

The original protobuf-net project contains many "red" unit tests but I managed to fix a lot of them.

Some build configurations may be not available through nuget, you can download their binaries manually from github (use Project Site link).

Product Compatible and additional computed target framework versions.
.NET Framework net20 is compatible.  net30 is compatible.  net35 is compatible.  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. 
Silverlight sl5 is compatible. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wp8 is compatible.  wp81 was computed. 
Windows Store netcore was computed.  netcore45 is compatible.  netcore451 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
2.0.1.1170 1,523 7/9/2022
2.0.1.1069 1,323 5/19/2022
2.0.1.1033 1,450 4/30/2022
2.0.1.1032 1,448 4/30/2022
2.0.1.1031 1,347 4/30/2022
2.0.1.969 1,359 4/30/2022
2.0.1.968 1,334 4/30/2022
2.0.1 1,494 12/27/2020
2.0.0.372 2,769 8/5/2016
2.0.0.245 2,149 5/30/2016
2.0.0.243 2,090 5/30/2016
2.0.0.241 2,023 5/30/2016
2.0.0.239 1,993 5/30/2016
2.0.0.234 2,326 5/28/2016
2.0.0.227 1,963 5/24/2016
2.0.0.187 1,980 5/5/2016
2.0.0.96 2,499 3/20/2016
1.0.0.938 2,144 1/13/2016
1.0.0.818 2,836 11/14/2015
1.0.0.793 2,536 11/1/2015
1.0.0.776 2,541 10/24/2015
1.0.0.767 2,448 10/19/2015

* 2.0.0.234:
- Improved compiled dll output size, compilation and cold run speed
- Added an option CompilerOptions.AlsoCompileInPlace (default: true)
- dlls for Xamarin.Android for emit support
- RunSharp dependency updated

* 2.0.0.227: V2 release
- Added CompileOptions.IterativeMode
- Fixed incorrect IL generated when list.Add method has a return value
- Fixed incorrect behavior of model.CloneAsUnfrozen
- Indexers won't be added as implicit fields
- Enum flags for model ids, see model.SetEnumFlagModelId
- RunSharp dependency updated

* 2.0.0.186: V2 RC2
- Removing field won't break reference tracking.

* 2.0.0.96: V2 RC
- Google Protocol Buffers format support is back (I've reconsidered this) - (de)serialization.
- Nested collections.
- Multi-dimensional arrays.
- Improved reference tracking (e.g. surrogate fix and referencing arrays from inside themselves).
- Improved versioning (e.g. between reference-nonreference-null-nonnull-dynamic).
- Optimizations for better output size.
- Collection subtypes (will read subtype number to create correct concrete type).
- Array types may be registered as collections and use full set of features (null support, etc) even when passed as root objects.
- Primitive types are allowed to be set to fields marked as dynamic type.
- Reference serialization will avoid using too much recursion in LateReference mode.
- Possibility to specify different attribute sets for different models (see ModelId property on attributes).
- Attributes to specify behavior on collection and collection elements (and nested) separately.
- Significant performance improvements.

* 1.0.0.938:
- more effficient memory usage
- if writing stream CanSeek and CanRead the serializer may use it as a buffer when its own buffer grows too big

* 1.0.0.818: merged changes from the fork origin (except DNX)
* 1.0.0.793: fixed AsReferenceDefault correct usage for legacy protobuf-net attributes
* 1.0.0.776:
- fixed issue when surrogated value was not correctly reference tracked
- add method is recognized not only on IEnumerable<T> but also on its inheritors like IReadOnlyCollection<T>

* 1.0.0.767 - improvements in list handling, merged changes from original protobuf-net

* 1.0.0.58 - initial AqlaSerializer release