The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Esun Kim f11282df8d
Bump dev version v1.51-dev (#31174)
2 years ago
..
Grpc.Tools Grpc.Tools: Parse warnings from libprotobuf (fix #27502) (#30371) 2 years ago
Grpc.Tools.Tests Grpc.Tools: Parse warnings from libprotobuf (fix #27502) (#30371) 2 years ago
build Bump dev version v1.51-dev (#31174) 2 years ago
doc make reference docs tooling to docfx directory to avoid collision 6 years ago
keys include assembly signing key in the repo 9 years ago
nuget_helpers Remove C# implementation (individual packages will continue to be maintained through v2.46.x patches or moved to grpc-dotnet) (#29225) 3 years ago
.editorconfig Infer coding style, adjust .editorconfig, reformat Tools code 6 years ago
.gitignore Minor changes to control files from Tools package rework 7 years ago
BUILD-INTEGRATION.md Grpc.Tools document AdditionalImportDirs (#30405) 2 years ago
Directory.Build.props introduce common.props, set LangVersion to 7.2 4 years ago
Directory.Build.targets introduce common.props, set LangVersion to 7.2 4 years ago
Grpc.sln Remove C# implementation (individual packages will continue to be maintained through v2.46.x patches or moved to grpc-dotnet) (#29225) 3 years ago
README.md Remove C# implementation (individual packages will continue to be maintained through v2.46.x patches or moved to grpc-dotnet) (#29225) 3 years ago
Settings.StyleCop Setting up stylecop to ignore generated files and fixing style 10 years ago
build_nuget.sh Remove C# implementation (individual packages will continue to be maintained through v2.46.x patches or moved to grpc-dotnet) (#29225) 3 years ago
install_dotnet_sdk.ps1 Update csharp SDK to LTS versions (#27966) 3 years ago
packageIcon.png Fix C# nuget package build. (#28152) 3 years ago
tests.json Remove C# implementation (individual packages will continue to be maintained through v2.46.x patches or moved to grpc-dotnet) (#29225) 3 years ago

README.md

gRPC C#

This directory used to contain the original C# implementation of gRPC based on the native gRPC Core library (i.e. Grpc.Core nuget package). This implementation is currently in maintenance mode and its source code has been moved (see below for details). Also, we plan to deprecate the implementation in the future (see blogpost).

The source code that used to reside here has been moved as following:

  • The Grpc, Grpc.Core, Grpc.Core.Testing, Grpc.Core.NativeDebug and Grpc.Core.Xamarin packages will continue to live in maintenance mode on the v1.46.x branch, where they will get the necessary critical/security patches as needed and will be released from there (as usual for gRPC patch releases). All future releases of these packages will have their major/minor version fixed at 2.46 and only their patch version will be incremented (2.46.0,2.46.1, ...)

  • The Grpc.Core.Api, Grpc.Auth, Grpc.HealthCheck and Grpc.Reflection packages will be moved to the grpc-dotnet repository where their development will continue (note that all these packages are implementation-agnostic, and they are also used by grpc-dotnet, so it makes sense to move them there). Future releases of these packages (v2.47.x, v2.48.x, ...) will be released as part of the grpc-dotnet release.

  • The package Grpc.Tools (which provides the protobuf/grpc codegen build integration) will for now stay on the master branch of grpc/grpc (i.e. in this directory). From there it will continue to be released along with other gRPC languages that live in the grpc/grpc repository. The eventual goal is to also move Grpc.Tools to elsewhere (probably the grpc-dotnet repository), but more work is needed there (e.g. we need to figure out some technical and test-infrastructure related issues first).

The original src/csharp tree

It currently lives on the v1.46.x release branch here: https://github.com/grpc/grpc/tree/v1.46.x/src/csharp (and is in maintenance mode).

The original gRPC C# examples

The examples for the Grpc.Code implementation of gRPC for C# can be found here: https://github.com/grpc/grpc/tree/v1.46.x/examples/csharp