mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
278 B
17 lines
278 B
9 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
unzip "$EXTERNAL_GIT_ROOT/input_artifacts/csharp_nugets.zip" -d TestNugetFeed
|
||
|
|
||
|
# TODO(jtattermusch): replace the version number
|
||
|
./update_version.sh 0.13.0
|
||
|
|
||
|
nuget restore
|
||
|
|
||
|
xbuild DistribTest.sln
|
||
|
|
||
|
mono DistribTest/bin/Debug/DistribTest.exe
|