Grpc.AspNetCore.Server 2.49.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Grpc.AspNetCore.Server --version 2.49.0
NuGet\Install-Package Grpc.AspNetCore.Server -Version 2.49.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="Grpc.AspNetCore.Server" Version="2.49.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Grpc.AspNetCore.Server --version 2.49.0
#r "nuget: Grpc.AspNetCore.Server, 2.49.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.
// Install Grpc.AspNetCore.Server as a Cake Addin
#addin nuget:?package=Grpc.AspNetCore.Server&version=2.49.0

// Install Grpc.AspNetCore.Server as a Cake Tool
#tool nuget:?package=Grpc.AspNetCore.Server&version=2.49.0

Grpc.AspNetCore.Server

Grpc.AspNetCore.Server is a gRPC server library for .NET.

Configure gRPC

In Startup.cs:

  • gRPC is enabled with the AddGrpc method.
  • Each gRPC service is added to the routing pipeline through the MapGrpcService method. For information about how to create gRPC services, see Create gRPC services and methods.
public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddGrpc();
    }

    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }

        app.UseRouting();

        app.UseEndpoints(endpoints =>
        {
            endpoints.MapGrpcService<GreeterService>();
        });
    }
}

ASP.NET Core middleware and features share the routing pipeline, therefore an app can be configured to serve additional request handlers. The additional request handlers, such as MVC controllers, work in parallel with the configured gRPC services.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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 was computed.  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. 
.NET Core netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (104)

Showing the top 5 NuGet packages that depend on Grpc.AspNetCore.Server:

Package Downloads
Grpc.AspNetCore.Server.ClientFactory The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

HttpClientFactory integration the for gRPC .NET client when running in ASP.NET Core

Grpc.AspNetCore.Server.Reflection The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Automatic discovery of services for Grpc.Reflection

Pulumi The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The Pulumi .NET SDK lets you write cloud programs in C#, F#, and VB.NET.

protobuf-net.Grpc.AspNetCore The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Package Description

Grpc.AspNetCore.HealthChecks The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Integration of ASP.NET Core health checks with Grpc.HealthCheck

GitHub repositories (21)

Showing the top 5 popular GitHub repositories that depend on Grpc.AspNetCore.Server:

Repository Stars
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
FastEndpoints/FastEndpoints
A light-weight REST API development framework for ASP.NET 6 and newer.
grpc/grpc-dotnet
gRPC for .NET
Cysharp/MagicOnion
Unified Realtime/API framework for .NET platform and Unity.
Version Downloads Last updated
2.63.0 206,499 5/24/2024
2.63.0-pre1 11,922 5/8/2024
2.62.0 916,218 3/29/2024
2.62.0-pre1 2,437 3/8/2024
2.61.0 1,224,079 2/22/2024
2.61.0-pre1 10,288 2/8/2024
2.60.0 1,657,081 1/3/2024
2.60.0-pre1 11,139 12/14/2023
2.59.0 2,150,964 11/8/2023
2.59.0-pre1 6,615 10/27/2023
2.58.0 705,745 10/19/2023
2.58.0-pre1 31,450 10/9/2023
2.57.0 1,839,546 9/6/2023
2.57.0-pre1 5,165 8/31/2023
2.56.0 426,394 8/25/2023
2.56.0-pre2 4,999 8/16/2023
2.56.0-pre1 5,292 8/3/2023
2.55.0 2,128,792 7/4/2023
2.55.0-pre1 6,141 6/23/2023
2.54.0 1,140,081 6/15/2023
2.54.0-pre1 11,529 5/25/2023
2.53.0 1,820,982 5/5/2023
2.53.0-pre1 14,939 4/12/2023
2.52.0 2,352,190 3/15/2023
2.52.0-pre1 9,604 3/3/2023
2.51.0 4,285,509 1/2/2023
2.51.0-pre1 7,520 12/7/2022
2.50.0 1,834,093 11/17/2022
2.50.0-pre1 17,449 11/3/2022
2.49.0 8,811,879 9/26/2022
2.49.0-pre1 15,259 9/1/2022
2.48.0 2,418,895 8/24/2022
2.48.0-pre1 5,214 8/17/2022
2.47.0 2,636,060 7/3/2022
2.47.0-pre1 5,797 6/23/2022
2.46.0 2,704,072 5/13/2022
2.46.0-pre1 5,011 4/28/2022
2.45.0 1,647,500 4/19/2022
2.45.0-pre1 5,667 4/7/2022
2.44.0 1,756,397 3/17/2022
2.44.0-pre1 20,779 3/9/2022
2.43.0 1,063,934 2/25/2022
2.43.0-pre1 24,700 1/28/2022
2.42.0 2,611,879 1/19/2022
2.42.0-pre1 10,806 12/30/2021
2.41.0 1,463,739 12/7/2021
2.41.0-pre1 20,813 11/12/2021
2.40.0 5,141,027 10/5/2021
2.40.0-pre1 6,924 9/9/2021
2.39.0 1,582,199 8/18/2021
2.39.0-pre1 6,040 8/6/2021
2.38.0 2,036,057 6/11/2021
2.38.0-pre1 2,564 6/4/2021
2.37.0 3,165,788 4/20/2021
2.37.0-pre1 2,283 4/14/2021
2.36.0 2,299,627 3/17/2021
2.36.0-pre1 3,721 3/9/2021
2.35.0 822,237 2/4/2021
2.35.0-pre1 3,476 1/26/2021
2.34.0 2,723,617 12/11/2020
2.34.0-pre1 5,087 12/1/2020
2.33.1 1,793,020 10/28/2020
2.33.1-pre1 2,597 10/22/2020
2.32.0 1,224,641 10/5/2020
2.32.0-pre1 14,920 9/8/2020
2.31.0 611,454 8/14/2020
2.31.0-pre2 2,853 8/3/2020
2.30.0 451,711 7/16/2020
2.30.0-pre1 13,773 6/17/2020
2.29.0 845,602 5/27/2020
2.29.0-pre1 5,214 5/15/2020
2.28.0 2,355,864 4/9/2020
2.28.0-pre2 23,158 3/11/2020
2.28.0-pre1 8,062 3/3/2020
2.27.0 1,600,306 2/7/2020
2.27.0-pre1 9,824 1/24/2020
2.26.0 387,978 12/19/2019
2.26.0-pre1 2,538 12/10/2019
2.25.0 1,051,930 11/7/2019
2.25.0-pre1 2,562 11/1/2019
2.24.0 332,657 10/21/2019
2.24.0-pre1 3,293 10/9/2019
2.23.2 259,155 9/20/2019
0.2.23-pre2 11,955 9/6/2019
0.2.23-pre1 11,869 8/21/2019
0.1.22-pre3 9,685 7/30/2019
0.1.22-pre2 14,096 7/2/2019
0.1.22-pre1 7,149 6/17/2019
0.1.21-pre1 15,317 6/4/2019
0.1.20-pre1 12,169 4/9/2019
0.1.19-pre1 5,652 2/21/2019