From dd0897be1c9489a7d4a438c4ba93d692372fb564 Mon Sep 17 00:00:00 2001 From: James Newton-King Date: Thu, 8 Aug 2019 00:06:30 +1200 Subject: [PATCH] Display all the packages required for a gRPC client (#13704) * Update basics.md * Update basics.md --- aspnetcore/grpc/basics.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/grpc/basics.md b/aspnetcore/grpc/basics.md index d7e1e792a4..e1e506c72e 100644 --- a/aspnetcore/grpc/basics.md +++ b/aspnetcore/grpc/basics.md @@ -46,9 +46,9 @@ This package is required by both the server and client projects. The `Grpc.AspNe [!code-xml[](~/tutorials/grpc/grpc-start/sample/GrpcGreeter/GrpcGreeter.csproj?highlight=1&range=12)] -Client projects should reference `Grpc.Tools` directly. The tooling package isn't required at runtime, so the dependency is marked with `PrivateAssets="All"`: +Client projects should directly reference `Grpc.Tools` alongside the other packages required to use the gRPC client. The tooling package isn't required at runtime, so the dependency is marked with `PrivateAssets="All"`: -[!code-xml[](~/tutorials/grpc/grpc-start/sample/GrpcGreeterClient/GrpcGreeterClient.csproj?highlight=1&range=11)] +[!code-xml[](~/tutorials/grpc/grpc-start/sample/GrpcGreeterClient/GrpcGreeterClient.csproj?highlight=3&range=9-11)] ## Generated C# assets