Skip to content

Commit

Permalink
Added missing step causing compilation issue (#20000)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpoDesign committed Sep 28, 2020
1 parent 37da523 commit e655869
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions aspnetcore/tutorials/grpc/grpc-start.md
Expand Up @@ -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)
Expand Down

0 comments on commit e655869

Please sign in to comment.