aqlaserializer 1.0.0.776
See the version list below for details.
dotnet add package aqlaserializer --version 1.0.0.776
NuGet\Install-Package aqlaserializer -Version 1.0.0.776
<PackageReference Include="aqlaserializer" Version="1.0.0.776" />
paket add aqlaserializer --version 1.0.0.776
#r "nuget: aqlaserializer, 1.0.0.776"
// Install aqlaserializer as a Cake Addin #addin nuget:?package=aqlaserializer&version=1.0.0.776 // Install aqlaserializer as a Cake Tool #tool nuget:?package=aqlaserializer&version=1.0.0.776
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 | Versions 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. |
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,708 | 7/9/2022 |
2.0.1.1069 | 1,424 | 5/19/2022 |
2.0.1.1033 | 1,592 | 4/30/2022 |
2.0.1.1032 | 1,548 | 4/30/2022 |
2.0.1.1031 | 1,460 | 4/30/2022 |
2.0.1.969 | 1,469 | 4/30/2022 |
2.0.1.968 | 1,442 | 4/30/2022 |
2.0.1 | 1,602 | 12/27/2020 |
2.0.0.372 | 2,932 | 8/5/2016 |
2.0.0.245 | 2,267 | 5/30/2016 |
2.0.0.243 | 2,211 | 5/30/2016 |
2.0.0.241 | 2,150 | 5/30/2016 |
2.0.0.239 | 2,109 | 5/30/2016 |
2.0.0.234 | 2,420 | 5/28/2016 |
2.0.0.227 | 2,097 | 5/24/2016 |
2.0.0.187 | 2,086 | 5/5/2016 |
2.0.0.96 | 2,630 | 3/20/2016 |
1.0.0.938 | 2,306 | 1/13/2016 |
1.0.0.818 | 2,975 | 11/14/2015 |
1.0.0.793 | 2,671 | 11/1/2015 |
1.0.0.776 | 2,682 | 10/24/2015 |
1.0.0.767 | 2,571 | 10/19/2015 |
* 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