From 5d73cdf327281c2e281f1b0cd107ceb2720a74b5 Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Tue, 30 Jun 2020 09:24:40 +0200 Subject: [PATCH] C# tutorial: Simplify instructions for running route guide server and client (#221) --- content/docs/languages/csharp/basics.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/docs/languages/csharp/basics.md b/content/docs/languages/csharp/basics.md index 22c85b3..e58e0c0 100644 --- a/content/docs/languages/csharp/basics.md +++ b/content/docs/languages/csharp/basics.md @@ -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.