We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37da523 commit e655869Copy full SHA for e655869
aspnetcore/tutorials/grpc/grpc-start.md
@@ -199,6 +199,12 @@ dotnet add GrpcGreeterClient.csproj package Grpc.Tools
199
200
* Create a *Protos* folder in the gRPC client project.
201
* 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
208
* Edit the *GrpcGreeterClient.csproj* project file:
209
210
# [Visual Studio](#tab/visual-studio)
0 commit comments