Protobuf.Static 2.5.0

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.

Requires NuGet 2.5 or higher.

dotnet add package Protobuf.Static --version 2.5.0
                    
NuGet\Install-Package Protobuf.Static -Version 2.5.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="Protobuf.Static" Version="2.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Protobuf.Static" Version="2.5.0" />
                    
Directory.Packages.props
<PackageReference Include="Protobuf.Static" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Protobuf.Static --version 2.5.0
                    
#r "nuget: Protobuf.Static, 2.5.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.
#:package Protobuf.Static@2.5.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Protobuf.Static&version=2.5.0
                    
Install as a Cake Addin
#tool nuget:?package=Protobuf.Static&version=2.5.0
                    
Install as a Cake Tool

Protocol Buffers (a.k.a., protobuf) are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data.
     You can find protobuf's documentation on the Google Developers site.

Product Compatible and additional computed target framework versions.
native native is compatible. 
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

* New notion "import public" that allows a proto file to forward the content it imports to its importers.
     * New enum option "allow_alias" that specifies whether different symbols can be assigned the same numeric value. Default value is "true". Setting it to false causes the compiler to reject enum definitions where multiple symbols have the same numeric value.
     * New generated method set_allocated_foo(Type* foo) for message and string fields. This method allows you to set the field to a pre-allocated object and the containing message takes the ownership of that object.
     * Added SetAllocatedExtension() and ReleaseExtension() to extensions API.
     * Custom options are now formatted correctly when descriptors are printed in text format.
     * Various speed optimizations.