From d815de385dc1caa55d2c2efa3d715d6ca64d285e Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Thu, 12 Sep 2019 16:34:49 +0200 Subject: [PATCH] add grpc-dotnet docs --- content/docs/_index.html | 5 ++++- content/docs/quickstart/csharp-dotnet.md | 27 ++++++++++++++++++++++++ content/docs/quickstart/csharp.md | 3 +++ 3 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 content/docs/quickstart/csharp-dotnet.md diff --git a/content/docs/_index.html b/content/docs/_index.html index fcc3114..a6146d4 100644 --- a/content/docs/_index.html +++ b/content/docs/_index.html @@ -86,7 +86,10 @@ draft: false Quick Start Guide
gRPC Basics Tutorial
-API Reference +API Reference
+
+Quick Start Guide (the "grpc-dotnet" version) +

Objective-C

diff --git a/content/docs/quickstart/csharp-dotnet.md b/content/docs/quickstart/csharp-dotnet.md new file mode 100644 index 0000000..41a66c6 --- /dev/null +++ b/content/docs/quickstart/csharp-dotnet.md @@ -0,0 +1,27 @@ +--- +title: C# Quick Start (for the "grpc-dotnet" implementation) +layout: quickstart +short: C# with grpc-dotnet +description: This guide gets you started with gRPC for .NET with a simple working example. +--- + +
+ +NOTE: This is a quick start guide for the "grpc-dotnet" implementation of gRPC C#s. +See [gRPC C# Quick Start](/docs/quickstart/csharp) for how to start with the gRPC C# implementation based on native Core library. + +### General project info + +See https://github.com/grpc/grpc-dotnet for general info about the "gRPC for .NET" project. + +### gRPC ASP.NET Core Tutorial + +The best way to start is the [gRPC ASP.NET Core Tutorial](https://docs.microsoft.com/en-us/aspnet/core/tutorials/grpc/grpc-start?view=aspnetcore-3.0&tabs=visual-studio). See the [gRPC documentation](https://docs.microsoft.com/en-us/aspnet/core/grpc/?view=aspnetcore-3.0) section in ASP.NET Core's documentation for a more thorough overview. + +### More Examples + +More code examples for grpc-dotnet are at https://github.com/grpc/grpc-dotnet/tree/master/examples + + + + diff --git a/content/docs/quickstart/csharp.md b/content/docs/quickstart/csharp.md index e140b3b..d098427 100644 --- a/content/docs/quickstart/csharp.md +++ b/content/docs/quickstart/csharp.md @@ -7,6 +7,9 @@ description: This guide gets you started with gRPC in C# with a simple working e
+NOTE: This is a quick start guide for the gRPC C# implementation based on Core native library. +See [gRPC for .NET Quick Start](/docs/quickstart/csharp-dotnet/) for how to start with the "grpc-dotnet" implementation. + ### Before you begin #### Prerequisites