protobuf-net 2.0.0.668

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

// Install protobuf-net as a Cake Tool
#tool nuget:?package=protobuf-net&version=2.0.0.668

Protocol Buffers is the name of the binary serialization format used by Google for much of their data communications. It 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. protobuf-net is a .NET implementation of this, allowing you to serialize your .NET objects efficiently and easily. It is compatible with most of the .NET family, including .NET 2.0/3.0/3.5/4.0, .NET CF 2.0/3.5, Mono 2.x, Silverlight, etc.

Product Compatible and additional computed target framework versions.
.NET Framework net20 is compatible.  net20-cf is compatible.  net30 is compatible.  net35 is compatible.  net35-cf is compatible.  net40 is compatible.  net40-cf 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.

GitHub repositories (167)

Showing the top 5 popular GitHub repositories that depend on protobuf-net:

Repository Stars
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
dotnet/orleans
Cloud Native application framework for .NET
QuantConnect/Lean
Lean Algorithmic Trading Engine by QuantConnect (Python, C#)
quasar/Quasar
Remote Administration Tool for Windows
Version Downloads Last updated
2.0.0.668 160,197 9/30/2013
2.0.0.666 1,736 9/9/2013
2.0.0.664 263 9/3/2013
2.0.0.663 153 9/2/2013
2.0.0.640 4,562 5/29/2013
2.0.0.638 313 5/28/2013
2.0.0.621 7,654 1/16/2013
2.0.0.619 225 1/11/2013
2.0.0.614 286 12/31/2012
2.0.0.612 276 12/10/2012
2.0.0.611 520 12/5/2012
2.0.0.602 734 11/13/2012
2.0.0.601 196 11/6/2012
2.0.0.480 11,263 12/11/2011
1.0.0.280 698 4/14/2011

* 2.0.0.668 - fix: reader's position not resetting: eventually causes overflow on pooled instance; critical fix to 663
     * 2.0.0.666 - add: Support for BCL immutable types (Microsoft.Bcl.Immutable)
     * 2.0.0.664 - add: Remove some more allocations (IPredicate)
     * 2.0.0.663 - add: ProtoReader recycling for heavy read throughput
                 - add: precompile uses alternative switch construct (android limitations)
     * 2.0.0.651 - add: new key-signing options for precompile
                 - add: enum-passthru defaults
     * 2.0.0.640 - fix: bug with length-prefix / naked enumerations
     * 2.0.0.638 - update: protoc 2.5
                 - fix: various tweaks for Genderme
                 - fix: better support for "naked enumerables" (root enumerable objects)
     * 2.0.0.627 - fix: bug in "precompiler" for lots of types
                 - add: support for default type factories (including extended callback signature support)
                 - fix: ImplicitFields parsing failing if assembly loaded dynamically
                 - add: experimental support for concurrent collections
                 - add: support for tuples with AsReference; better handling of default AsReference; improved AsReference error message
     * 2.0.0.622 - fix: bug in protogen with default enums when no package is specified
     * 2.0.0.621 - fix: nasty regression in r619, where GetSchema() could cause base-type corruption
     * 2.0.0.619 - fix: GetSchema() should use ultimate base-type names when modelling inheritance
                 - fix: ensure precomile always generates a .ctor() on the concrete serializer
                 - add: support out-of-order fields when deseiralizing inheritance from other protobuf implementations
     * 2.0.0.614 - fix: enum handling of ": byte" confusing signed/unsigned bytes
     * 2.0.0.612 - fix: allow adding enum maps at runtime via MetaType
     * 2.0.0.611 - fix: *Specified should work with non-public methods
                 - performance: pre-compiled serializers now use dictionary lookups where appropriate
                 - fix: nuget package for portable library should be more inclusive
     * 2.0.0.602 - added precompiler support for internal-types and [InternalsVisibleTo(...)]-forwarding
                 - made AllowParseableTypes available on default type-model
     * 2.0.0.601 - added phone8 support