aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/README.md
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-09-24 16:09:38 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-09-24 17:45:14 -0700
commite0be467c3358f7dd06bf4208f9ae4f5970f138b8 (patch)
tree12da628570592c56c098acdc713d5b02adf70551 /src/csharp/README.md
parenta25facb0b51f05a60a7884adb926eb51f7c50c53 (diff)
Update c# docs for release 0.11
Diffstat (limited to 'src/csharp/README.md')
-rw-r--r--src/csharp/README.md108
1 files changed, 59 insertions, 49 deletions
diff --git a/src/csharp/README.md b/src/csharp/README.md
index 3fbc1c5f05..d091719ee5 100644
--- a/src/csharp/README.md
+++ b/src/csharp/README.md
@@ -6,12 +6,19 @@ A C# implementation of gRPC.
Status
------
-Alpha : Ready for early adopters.
+Beta
-Usage: Windows
+PREREQUISITES
--------------
-- Prerequisites: .NET Framework 4.5+, Visual Studio 2013 with NuGet extension installed (VS2015 should work).
+- Windows: .NET Framework 4.5+, Visual Studio 2013 or 2015.
+- Linux: Mono 3.2.8+, MonoDevelop 5.9 with NuGet add-in installed.
+- Mac OS X: [homebrew][], Xamarin Studio with NuGet add-in installed.
+
+HOW TO USE
+--------------
+
+**Windows**
- Open Visual Studio and start a new project/solution.
@@ -19,49 +26,44 @@ Usage: Windows
That will also pull all the transitive dependencies (including the native libraries that
gRPC C# is internally using).
-- Helloworld project example can be found in https://github.com/grpc/grpc/tree/master/examples/csharp.
+**Linux (Debian)**
-Usage: Linux (Mono)
---------------
+- Add [Debian jessie-backports][] to your `sources.list` file. Example:
-- Prerequisites: Mono 3.2.8+, MonoDevelop 5.9 with NuGet add-in installed.
-
-- Install Linuxbrew and gRPC C Core using instructions in https://github.com/grpc/homebrew-grpc
-
-- gRPC C# depends on native shared library libgrpc_csharp_ext.so (Unix flavor of grpc_csharp_ext.dll).
- This library will be installed to `~/.linuxbrew/lib` by the previous step.
- To make it visible to mono, you need to:
+ ```sh
+ echo "deb http://http.debian.net/debian jessie-backports main" | \
+ sudo tee -a /etc/apt/sources.list
+ ```
- - (preferred approach) add `libgrpc_csharp_ext.so` to `/etc/ld.so.cache` by running:
+- Install the gRPC Debian package
- ```sh
- $ echo "$HOME/.linuxbrew/lib" | sudo tee /etc/ld.so.conf.d/zzz_brew_lib.conf
- $ sudo ldconfig
- ```
+ ```sh
+ sudo apt-get update
+ sudo apt-get install libgrpc0
+ ```
- - (adhoc approach) set `LD_LIBRARY_PATH` environment variable to point to directory containing `libgrpc_csharp_ext.so`:
+- gRPC C# depends on native shared library `libgrpc_csharp_ext.so` (Unix flavor of grpc_csharp_ext.dll).
+ This library is not part of the base gRPC debian package and needs to be installed manually from
+ a `.deb` file. Download the debian package `libgrpc_csharp_ext` from corresponding gRPC release on GitHub
+ and install it using `dpkg`.
- ```sh
- $ export LD_LIBRARY_PATH=$HOME/.linuxbrew/lib:${LD_LIBRARY_PATH}
- ```
- - (if you are contributor) installing gRPC from sources using `sudo make install_grpc_csharp_ext` also works.
+ ```sh
+ # choose version corresponding to libgrpc you've installed.
+ wget https://github.com/grpc/grpc/releases/download/release-0_11_0/libgrpc-csharp-ext0_0.11.0.0-1_amd64.deb
+ dpkg -i libgrpc-csharp-ext0_0.11.0.0-1_amd64.deb
+ ```
- Open MonoDevelop and start a new project/solution.
- Add NuGet package `Grpc` as a dependency (Project -> Add NuGet packages).
-- Helloworld project example can be found in https://github.com/grpc/grpc/tree/master/examples/csharp.
-
-Usage: MacOS (Mono)
---------------
+**Mac OS X**
- WARNING: As of now gRPC C# only works on 64bit version of Mono (because we don't compile
the native extension for C# in 32bit mode yet). That means your development experience
with Xamarin Studio on MacOS will not be great, as you won't be able to run your
code directly from Xamarin Studio (which requires 32bit version of Mono).
-- Prerequisites: Xamarin Studio with NuGet add-in installed.
-
- Install Homebrew and gRPC C Core using instructions in https://github.com/grpc/homebrew-grpc
- Install 64-bit version of mono with command `brew install mono` (assumes you've already installed Homebrew).
@@ -73,35 +75,27 @@ Usage: MacOS (Mono)
- *You will be able to build your project in Xamarin Studio, but to run or test it,
you will need to run it under 64-bit version of Mono.*
-- Helloworld project example can be found in https://github.com/grpc/grpc/tree/master/examples/csharp.
-
-Building: Windows
+BUILD FROM SOURCE
-----------------
You only need to go through these steps if you are planning to develop gRPC C#.
If you are a user of gRPC C#, go to Usage section above.
-- Prerequisites for development: NET Framework 4.5+, Visual Studio 2013 (with NuGet and NUnit extensions installed).
+**Windows**
-- The grpc_csharp_ext native library needs to be built so you can build the Grpc C# solution. You can
+- The grpc_csharp_ext native library needs to be built so you can build the gRPC C# solution. You can
either build the native solution in `vsprojects/grpc.sln` from Visual Studio manually, or you can use
a convenience batch script that builds everything for you.
```
+ > REM From src/csharp directory
> buildall.bat
```
-- Open Grpc.sln using Visual Studio 2013. NuGet dependencies will be restored
+- Open Grpc.sln using Visual Studio. NuGet dependencies will be restored
upon build (you need to have NuGet add-in installed).
-
-Building: Linux (Mono)
-----------------------
-
-You only need to go through these steps if you are planning to develop gRPC C#.
-If you are a user of gRPC C#, go to Usage section above.
-
-- Prerequisites for development: Mono 3.2.8+, MonoDevelop 5.9 with NuGet and NUnit add-ins installed.
+**Linux**
```sh
$ sudo apt-get install mono-devel
@@ -123,8 +117,8 @@ don't support NuGet add-in.
- Build the solution & run all the tests from test view.
-Tests
------
+RUNNING TESTS
+-------------
gRPC C# is using NUnit as the testing framework.
@@ -136,12 +130,25 @@ Then you should be able to run all the test from the Test View.
After building the solution, you can also run the tests from command line
using nunit-console tool.
+
```sh
# from Grpc.Core.Test/bin/Debug directory
$ nunit-console Grpc.Core.Tests.dll
```
-Contents
+gRPC team uses a Python script to simplify facilitate running tests for
+different languages.
+
+```
+tools/run_tests/run_tests.py -l csharp
+```
+
+DOCUMENTATION
+-------------
+- the gRPC C# reference documentation is available online at [grpc.io][]
+- Helloworld project example can be found in https://github.com/grpc/grpc/tree/master/examples/csharp/helloworld.
+
+CONTENTS
--------
- ext:
@@ -159,7 +166,7 @@ Contents
- Grpc.IntegrationTesting:
Cross-language gRPC implementation testing (interop testing).
-Troubleshooting
+TROUBLESHOOTING
---------------
### Problem: Unable to load DLL 'grpc_csharp_ext.dll'
@@ -170,8 +177,11 @@ Internally, gRPC C# uses a native library written in C (gRPC C core) and invokes
- If you are running your application that is using gRPC on Windows machine that doesn't have Visual Studio installed, you might need to install [Visual C++ 2013 redistributable](https://www.microsoft.com/en-us/download/details.aspx?id=40784) that contains some system .dll libraries that `grpc_csharp_ext.dll` depends on (see #905 for more details).
-- On Linux (or Docker), you need to first install gRPC C core and `libgrpc_csharp_ext.so` shared libraries. Currently, the libraries can be installed by `make install_grpc_csharp_ext` or using Linuxbrew (a Debian package is coming soon). Installation on a machine where your application is going to be deployed is no different.
+- On Linux (or Docker), you need to first install gRPC C core and `libgrpc_csharp_ext.so` shared libraries.
+ See [How to Use](#how-to-use) section for details how to install it.
+ Installation on a machine where your application is going to be deployed is no different.
-- On Mac, you need to first install gRPC C core and `libgrpc_csharp_ext.dylib` shared libraries using Homebrew. See above for installation instruction. Installation on a machine where your application is going to be deployed is no different.
+- On Mac, you need to first install gRPC C core and `libgrpc_csharp_ext.dylib` shared libraries using Homebrew. See above for installation instruction.
+ Installation on a machine where your application is going to be deployed is no different.
- Possible cause for the problem is that the `grpc_csharp_ext` library is installed, but it has different bitness (32/64bit) than your C# runtime (in case you are using mono) or C# application.