Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
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.
10 lines
385 B
10 lines
385 B
8 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Source this rc script to prepare the environment for Linux builds
|
||
|
|
||
|
# Set up dotnet
|
||
|
sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
|
||
|
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893
|
||
|
sudo apt-get update
|
||
|
sudo apt-get install -y dotnet-dev-1.0.4
|