Bumps [Google.Protobuf](https://github.com/protocolbuffers/protobuf) from 3.8.0 to 3.15.0. - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/master/generate_changelog.py) - [Commits](https://github.com/protocolbuffers/protobuf/compare/v3.8.0...v3.15.0) --- updated-dependencies: - dependency-name: Google.Protobuf dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|---|---|---|
| .. | ||
| Greeter | ||
| GreeterClient | ||
| GreeterServer | ||
| Greeter.sln | ||
| README.md | ||
README.md
gRPC in 3 minutes (C#)
BACKGROUND
This is a version of the helloworld example using the dotnet SDK tools to compile helloworld.proto in a common library, build the server and the client, and run them.
PREREQUISITES
You can also build the solution Greeter.sln using Visual Studio 2017,
but it's not a requirement.
BUILD AND RUN
-
Build and run the server
> dotnet run -p GreeterServer -
Build and run the client
> dotnet run -p GreeterClient
Tutorial
You can find a more detailed tutorial about Grpc in gRPC Basics: C#