You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 9, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: docs/quickstart/csharp.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,8 +57,6 @@ From the `examples/csharp/Helloworld` directory:
57
57
> dotnet build Greeter.sln
58
58
```
59
59
60
-
(if you're using dotnet SDK 1.x you need to run dotnet restore Greeter.sln first)
61
-
62
60
*NOTE: If you want to use gRPC C# from a project that uses the old-style .csproj files (supported by Visual Studio 2013, 2015 and older versions of Mono), please refer to the
63
61
[Greeter using legacy .csproj](https://github.com/grpc/grpc/blob/{{ site.data.config.grpc_release_tag }}/examples/csharp/HelloworldLegacyCsproj/README.md) example.*
64
62
@@ -70,14 +68,14 @@ From the `examples/csharp/Helloworld` directory:
70
68
71
69
```
72
70
> cd GreeterServer
73
-
> dotnet run -f netcoreapp1.0
71
+
> dotnet run -f netcoreapp2.1
74
72
```
75
73
76
74
* In another terminal, run the client
77
75
78
76
```
79
77
> cd GreeterClient
80
-
> dotnet run -f netcoreapp1.0
78
+
> dotnet run -f netcoreapp2.1
81
79
```
82
80
83
81
Congratulations! You've just run a client-server application with gRPC.
@@ -244,14 +242,14 @@ Just like we did before, from the `examples/csharp/Helloworld` directory:
0 commit comments