From e6558695ea23c04a4e0ad6e5cc9b13e6a4bd36ce Mon Sep 17 00:00:00 2001 From: Pavel Date: Mon, 28 Sep 2020 23:08:26 +0100 Subject: [PATCH] Added missing step causing compilation issue (#20000) --- aspnetcore/tutorials/grpc/grpc-start.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/aspnetcore/tutorials/grpc/grpc-start.md b/aspnetcore/tutorials/grpc/grpc-start.md index 6a6472dee9c4..eeae8b3d323c 100644 --- a/aspnetcore/tutorials/grpc/grpc-start.md +++ b/aspnetcore/tutorials/grpc/grpc-start.md @@ -199,6 +199,12 @@ dotnet add GrpcGreeterClient.csproj package Grpc.Tools * Create a *Protos* folder in the gRPC client project. * Copy the *Protos\greet.proto* file from the gRPC Greeter service to the gRPC client project. +* Update the namespace inside the `greet.proto` file to the project's namespace: + + ``` + option csharp_namespace = "GrpcGreeterClient"; + ``` + * Edit the *GrpcGreeterClient.csproj* project file: # [Visual Studio](#tab/visual-studio)