@@ -47,9 +47,9 @@ In this tutorial, you:
4747* Start Visual Studio and select ** Create a new project** . Alternatively, from the Visual Studio ** File** menu, select ** New** > ** Project** .
4848* In the ** Create a new project** dialog, select ** gRPC Service** and select ** Next** :
4949
50- ![ Create a new project dialog] ( ~/tutorials/grpc/grpc-start/static/cnp.png )
50+ ![ Create a new project dialog in Visual Studio ] ( ~/tutorials/grpc/grpc-start/static/cnp.png )
5151
52- * Name the project ** GrpcGreeter** . It's important to name the project * GrpcGreeter* so the namespaces will match when you copy and paste code.
52+ * Name the project ** GrpcGreeter** . It's important to name the project * GrpcGreeter* so the namespaces match when you copy and paste code.
5353* Select ** Create** .
5454* In the ** Create a new gRPC service** dialog:
5555 * The ** gRPC Service** template is selected.
@@ -58,7 +58,7 @@ In this tutorial, you:
5858# [ Visual Studio Code] ( #tab/visual-studio-code )
5959
6060* Open the [ integrated terminal] ( https://code.visualstudio.com/docs/editor/integrated-terminal ) .
61- * Change directories (` cd ` ) to a folder which will contain the project.
61+ * Change directories (` cd ` ) to a folder for the project.
6262* Run the following commands:
6363
6464 ``` dotnetcli
@@ -77,10 +77,10 @@ In this tutorial, you:
7777* Start Visual Studio for Mac and select ** Create a new project** . Alternatively, from the Visual Studio ** File** menu, select ** New** > ** Project** .
7878* In the ** Create a new project** dialog, select ** Web and Console** > ** App** > ** gRPC Service** and select ** Next** :
7979
80- ![ Create a new project dialog] ( ~/tutorials/grpc/grpc-start/static/cnp-mac.png )
80+ ![ Create a new project dialog on macOS ] ( ~/tutorials/grpc/grpc-start/static/cnp-mac.png )
8181
82- * Select ** .NET Core 3.1** for the target framework and select ** Next**
83- * Name the project ** GrpcGreeter** . It's important to name the project * GrpcGreeter* so the namespaces will match when you copy and paste code.
82+ * Select ** .NET Core 3.1** for the target framework and select ** Next** .
83+ * Name the project ** GrpcGreeter** . It's important to name the project * GrpcGreeter* so the namespaces match when you copy and paste code.
8484* Select ** Create** .
8585---
8686
@@ -125,7 +125,7 @@ info: Microsoft.Hosting.Lifetime[0]
125125# [ Visual Studio Code] ( #tab/visual-studio-code )
126126
127127* Open the [ integrated terminal] ( https://code.visualstudio.com/docs/editor/integrated-terminal ) .
128- * Change directories (` cd ` ) to a folder which will contain the project.
128+ * Change directories (` cd ` ) to a folder for the project.
129129* Run the following commands:
130130
131131 ``` dotnetcli
@@ -165,7 +165,7 @@ Install the packages using either the Package Manager Console (PMC) or Manage Nu
165165
166166#### Manage NuGet Packages option to install packages
167167
168- * Right-click the project in ** Solution Explorer** > ** Manage NuGet Packages**
168+ * Right-click the project in ** Solution Explorer** > ** Manage NuGet Packages** .
169169* Select the ** Browse** tab.
170170* Enter ** Grpc.Net.Client** in the search box.
171171* Select the ** Grpc.Net.Client** package from the ** Browse** tab and select ** Install** .
@@ -183,9 +183,9 @@ dotnet add GrpcGreeterClient.csproj package Grpc.Tools
183183
184184# [ Visual Studio for Mac] ( #tab/visual-studio-mac )
185185
186- * Right-click ** GrpcGreeterClient** project in the ** Solution Pad** and select ** Manage NuGet Packages**
186+ * Right-click ** GrpcGreeterClient** project in the ** Solution Pad** and select ** Manage NuGet Packages** .
187187* Enter ** Grpc.Net.Client** in the search box.
188- * Select the ** Grpc.Net.Client** package from the results pane and select ** Add Package**
188+ * Select the ** Grpc.Net.Client** package from the results pane and select ** Add Package** .
189189* Select the ** Accept** button on the ** Accept License** dialog.
190190* Repeat for ` Google.Protobuf ` and ` Grpc.Tools ` .
191191
0 commit comments