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