Skip to content

Commit e655869

Browse files
authored
Added missing step causing compilation issue (#20000)
1 parent 37da523 commit e655869

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

aspnetcore/tutorials/grpc/grpc-start.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,12 @@ dotnet add GrpcGreeterClient.csproj package Grpc.Tools
199199

200200
* Create a *Protos* folder in the gRPC client project.
201201
* Copy the *Protos\greet.proto* file from the gRPC Greeter service to the gRPC client project.
202+
* Update the namespace inside the `greet.proto` file to the project's namespace:
203+
204+
```
205+
option csharp_namespace = "GrpcGreeterClient";
206+
```
207+
202208
* Edit the *GrpcGreeterClient.csproj* project file:
203209

204210
# [Visual Studio](#tab/visual-studio)

0 commit comments

Comments
 (0)