C# tutorial: Simplify instructions for running route guide server and client (#221)

This commit is contained in:
Jan Tattermusch 2020-06-30 09:24:40 +02:00 committed by GitHub
parent 3dba10d66a
commit 5d73cdf327
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -481,15 +481,15 @@ Using `dotnet` command line tool
Run the server:
```sh
> cd RouteGuideServer/bin/Debug/netcoreapp2.1
> dotnet exec RouteGuideServer.dll
> cd RouteGuideServer
> dotnet run
```
From a different terminal, run the client:
```sh
> cd RouteGuideClient/bin/Debug/netcoreapp2.1
> dotnet exec RouteGuideClient.dll
> cd RouteGuideClient
> dotnet run
```
You can also run the server and client directly from Visual Studio.