mirror of https://github.com/grpc/grpc.io.git
Merge pull request #51 from jtattermusch/grpc_dotnet_docs
Add quickstart for the grpc-dotnet C# alternative
This commit is contained in:
commit
3a19f2f98b
|
|
@ -86,7 +86,10 @@ draft: false
|
||||||
|
|
||||||
<a href="/docs/quickstart/csharp/">Quick Start Guide</a><br>
|
<a href="/docs/quickstart/csharp/">Quick Start Guide</a><br>
|
||||||
<a href="/docs/tutorials/basic/csharp/">gRPC Basics Tutorial</a><br>
|
<a href="/docs/tutorials/basic/csharp/">gRPC Basics Tutorial</a><br>
|
||||||
<a href="https://grpc.io/grpc/csharp/api/Grpc.Core.html">API Reference</a>
|
<a href="https://grpc.io/grpc/csharp/api/Grpc.Core.html">API Reference</a><br>
|
||||||
|
<br>
|
||||||
|
<a href="/docs/quickstart/csharp-dotnet/">Quick Start Guide (the "grpc-dotnet" version)</a>
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
<h3 style="margin-top:3%;">Objective-C</h3>
|
<h3 style="margin-top:3%;">Objective-C</h3>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,23 @@
|
||||||
|
---
|
||||||
|
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.
|
||||||
|
---
|
||||||
|
|
||||||
|
<div id="toc"></div>
|
||||||
|
|
||||||
|
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/aspnet/core/tutorials/grpc/grpc-start). See the [gRPC documentation](https://docs.microsoft.com/aspnet/core/grpc) 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
|
||||||
|
|
@ -7,6 +7,9 @@ description: This guide gets you started with gRPC in C# with a simple working e
|
||||||
|
|
||||||
<div id="toc"></div>
|
<div id="toc"></div>
|
||||||
|
|
||||||
|
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
|
### Before you begin
|
||||||
|
|
||||||
#### Prerequisites
|
#### Prerequisites
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue