grpc/src/csharp
Esun Kim 78b9d84fd3 [Dep] Rollback Protobuf upgrade to v25.1 (#36247)
This is for gRPC Python that has an issue with Protobuf Python v26

Closes #36247

PiperOrigin-RevId: 621629528
2024-04-03 13:56:36 -07:00
..
Grpc.Tools C#: Grpc.Tools: Handle regex timeout when parsing protoc output (#36185) 2024-04-01 00:01:11 -07:00
Grpc.Tools.Tests [Python] Migrate from yapf to black (#33138) 2023-06-09 15:08:55 -07:00
build [Dep] Rollback Protobuf upgrade to v25.1 (#36247) 2024-04-03 13:56:36 -07:00
doc make reference docs tooling to docfx directory to avoid collision 2019-06-05 18:56:24 +02:00
keys include assembly signing key in the repo 2016-01-21 10:45:57 -08:00
nuget_helpers Remove C# implementation (individual packages will continue to be maintained through v2.46.x patches or moved to grpc-dotnet) (#29225) 2022-04-28 12:00:34 +02:00
.editorconfig Infer coding style, adjust .editorconfig, reformat Tools code 2018-10-14 08:34:03 -07:00
.gitignore Initial version of Grpc.Tools & Msbuild integration tests (#31638) 2023-01-09 14:29:47 +01:00
BUILD-INTEGRATION.md [csharp] Grpc.Tools documentation for sharing proto files between projects and nuget packages (#34521) 2023-10-18 09:39:42 -07:00
Directory.Build.props introduce common.props, set LangVersion to 7.2 2020-10-26 14:11:17 +01:00
Directory.Build.targets introduce common.props, set LangVersion to 7.2 2020-10-26 14:11:17 +01:00
Grpc.sln Remove C# implementation (individual packages will continue to be maintained through v2.46.x patches or moved to grpc-dotnet) (#29225) 2022-04-28 12:00:34 +02:00
README.md Remove C# implementation (individual packages will continue to be maintained through v2.46.x patches or moved to grpc-dotnet) (#29225) 2022-04-28 12:00:34 +02:00
Settings.StyleCop Setting up stylecop to ignore generated files and fixing style 2015-03-12 12:54:43 -07:00
build_nuget.sh Remove C# implementation (individual packages will continue to be maintained through v2.46.x patches or moved to grpc-dotnet) (#29225) 2022-04-28 12:00:34 +02:00
install_dotnet_sdk.ps1 Ensure compatibility with the new custom kokoro win2019 image (#32649) 2023-03-20 16:03:50 +01:00
packageIcon.png Fix C# nuget package build. (#28152) 2021-11-19 09:27:13 -08:00
tests.json Initial version of Grpc.Tools & Msbuild integration tests (#31638) 2023-01-09 14:29:47 +01:00

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