grpc/examples/csharp/Helloworld
dependabot[bot] 49b5692f9d
Bump Google.Protobuf in /examples/csharp/Helloworld/Greeter (#28849)
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>
2022-02-22 02:35:18 -08:00
..
Greeter Bump Google.Protobuf in /examples/csharp/Helloworld/Greeter (#28849) 2022-02-22 02:35:18 -08:00
GreeterClient change port number in examples to avoid conflict with forbidden port on win 2020-08-18 09:31:44 +02:00
GreeterServer change port number in examples to avoid conflict with forbidden port on win 2020-08-18 09:31:44 +02:00
Greeter.sln Redo C# examples to use new Grpc.Tools 2018-10-14 02:24:12 -07:00
README.md Docs: fix links to grpc.io tutorial pages 2020-06-16 08:47:24 -04:00

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#