aqlaserializer 1.0.0.767

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

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

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.

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.

AqlaSerializer project goal is not to make a Protocol Buffers compatible implementation but instead support all common .NET features. It is compatible with most of the .NET family, including .NET 2.0/3.0/3.5/4.0, Mono 2.x, Silverlight, 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 platforms may be not available through nuget, you can download their binaries manually from github.

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 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. 
Silverlight sl3-wp is compatible.  sl4 is compatible.  sl4-wp71 is compatible.  sl5 was computed. 
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.

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
2.0.1.1170 1,583 7/9/2022
2.0.1.1069 1,397 5/19/2022
2.0.1.1033 1,532 4/30/2022
2.0.1.1032 1,519 4/30/2022
2.0.1.1031 1,423 4/30/2022
2.0.1.969 1,438 4/30/2022
2.0.1.968 1,417 4/30/2022
2.0.1 1,570 12/27/2020
2.0.0.372 2,846 8/5/2016
2.0.0.245 2,234 5/30/2016
2.0.0.243 2,181 5/30/2016
2.0.0.241 2,107 5/30/2016
2.0.0.239 2,070 5/30/2016
2.0.0.234 2,390 5/28/2016
2.0.0.227 2,046 5/24/2016
2.0.0.187 2,061 5/5/2016
2.0.0.96 2,593 3/20/2016
1.0.0.938 2,232 1/13/2016
1.0.0.818 2,919 11/14/2015
1.0.0.793 2,618 11/1/2015
1.0.0.776 2,646 10/24/2015
1.0.0.767 2,532 10/19/2015

* 1.0.0.58 - initial AqlaSerializer release
* 1.0.0.767 - improvements in list handling, merged changes from original protobuf-net