protobuf-net.Grpc
1.3.14
Prefix Reserved
dotnet add package protobuf-net.Grpc --version 1.3.14
NuGet\Install-Package protobuf-net.Grpc -Version 1.3.14
<PackageReference Include="protobuf-net.Grpc" Version="1.3.14" />
<PackageVersion Include="protobuf-net.Grpc" Version="1.3.14" />
<PackageReference Include="protobuf-net.Grpc" />
paket add protobuf-net.Grpc --version 1.3.14
#r "nuget: protobuf-net.Grpc, 1.3.14"
#:package protobuf-net.Grpc@1.3.14
#addin nuget:?package=protobuf-net.Grpc&version=1.3.14
#tool nuget:?package=protobuf-net.Grpc&version=1.3.14
protobuf-net.Grpc
Code-first gRPC for .NET: describe the service as an interface, implement it, and consume it — no .proto
file and no generated client in between.
[ServiceContract]
public interface IMyAmazingService
{
ValueTask<SearchResponse> SearchAsync(SearchRequest request);
}
The server implements that interface; the client asks for it:
var client = http.CreateGrpcService<IMyAmazingService>();
var results = await client.SearchAsync(request);
The messages are ordinary protobuf-net contracts, so the wire
format is plain protobuf and other gRPC implementations can talk to it — with a .proto schema generated on
demand if they need one.
This package is the shared core, and is what a client over Grpc.Net.Client needs. Most other scenarios
want one of:
- protobuf-net.Grpc.AspNetCore — servers on ASP.NET Core
- protobuf-net.Grpc.ClientFactory — clients via dependency injection
- protobuf-net.Grpc.Native — the unmanaged
Grpc.CoreAPI
More
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.7.2
- Grpc.Core.Api (>= 2.80.0)
- Microsoft.Bcl.AsyncInterfaces (>= 10.0.8)
- protobuf-net (>= 2.4.8)
- System.IO.Pipelines (>= 10.0.8)
- System.Threading.Channels (>= 10.0.8)
- System.ValueTuple (>= 4.6.2)
-
.NETStandard 2.0
- Grpc.Core.Api (>= 2.80.0)
- Microsoft.Bcl.AsyncInterfaces (>= 10.0.8)
- protobuf-net (>= 2.4.8)
- System.IO.Pipelines (>= 10.0.8)
- System.Threading.Channels (>= 10.0.8)
-
.NETStandard 2.1
- Grpc.Core.Api (>= 2.80.0)
- protobuf-net (>= 2.4.8)
- System.IO.Pipelines (>= 10.0.8)
- System.Runtime.CompilerServices.Unsafe (>= 6.1.2)
- System.Threading.Channels (>= 10.0.8)
-
net10.0
- Grpc.Core.Api (>= 2.80.0)
- protobuf-net (>= 2.4.8)
-
net8.0
- Grpc.Core.Api (>= 2.80.0)
- protobuf-net (>= 2.4.8)
- System.IO.Pipelines (>= 10.0.8)
NuGet packages (395)
Showing the top 5 NuGet packages that depend on protobuf-net.Grpc:
| Package | Downloads |
|---|---|
|
protobuf-net.Grpc.AspNetCore
Hosts code-first gRPC services in ASP.NET Core |
|
|
protobuf-net.Grpc.Reflection
Generates .proto schemas from code-first gRPC contracts, and implements the gRPC reflection service |
|
|
protobuf-net.Grpc.ClientFactory
Code-first gRPC clients for dependency injection, via HttpClientFactory |
|
|
protobuf-net.Grpc.Native
Code-first gRPC over the unmanaged Grpc.Core API |
|
|
MyJetWallet.Sdk.GrpcMetrics
Package Description |
GitHub repositories (15)
Showing the top 15 popular GitHub repositories that depend on protobuf-net.Grpc:
| Repository | Stars |
|---|---|
|
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
|
|
|
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
|
|
|
dotnet/tye
Tye is a tool that makes developing, testing, and deploying microservices and distributed applications easier. Project Tye includes a local orchestrator to make developing microservices easier and the ability to deploy microservices to Kubernetes with minimal configuration.
|
|
|
grpc/grpc-dotnet
gRPC for .NET
|
|
|
linq2db/linq2db
Linq to database provider.
|
|
|
ProtonVPN/win-app
Official ProtonVPN Windows app
|
|
|
JasperFx/wolverine
Supercharged .NET server side development!
|
|
|
SteveDunn/Vogen
A semi-opinionated library which is a source generator and a code analyser. It Source generates Value Objects
|
|
|
abpframework/abp-samples
Sample solutions built with the ABP Framework
|
|
|
davidfowl/Micronetes
Micronetes is a local orchestrator inspired by kubernetes that makes developing and testing microservices and distributed applications easier.
|
|
|
gustavnavar/Grid.Blazor
Grid component with CRUD for Blazor (client-side and server-side) and ASP.NET Core MVC
|
|
|
havit/Havit.Blazor
Free Bootstrap 5 components for ASP.NET Blazor + optional enterprise-level stack for Blazor development (gRPC code-first, layered architecture, localization, auth, ...)
|
|
|
compujuckel/AssettoServer
Custom Assetto Corsa server with focus on freeroam
|
|
|
jessetalk/Galaxy
A c# and asp.net core based micro service demo
|
|
|
max-ieremenko/ServiceModel.Grpc
Code-first for gRPC
|
| Version | Downloads | Last Updated |
|---|---|---|
| 1.3.14 | 19,659 | 8/20/2026 |
| 1.3.6 | 15,603 | 8/17/2026 |
| 1.3.0 | 6,938 | 8/16/2026 |
| 1.2.2 | 7,109,295 | 10/14/2024 |
| 1.1.1 | 6,273,283 | 2/2/2023 |
| 1.0.179 | 1,037,724 | 11/9/2022 |
| 1.0.177 | 652,697 | 9/13/2022 |
| 1.0.171 | 315,916 | 7/19/2022 |
| 1.0.152 | 3,735,649 | 3/19/2021 |
| 1.0.147 | 395,003 | 1/25/2021 |
| 1.0.140 | 328,026 | 11/20/2020 |
| 1.0.136 | 96,199 | 11/14/2020 |
| 1.0.123 | 268,796 | 7/8/2020 |
| 1.0.121 | 4,517 | 7/7/2020 |
| 1.0.118 | 5,658 | 7/6/2020 |
| 1.0.113 | 5,613 | 7/6/2020 |
| 1.0.110 | 120,091 | 7/5/2020 |