Browse Source
Adds update instructions to getting_started (#286)
* Adds update instructions to getting_started
* Update getting_started.md
pull/288/head
Ryan Nowak
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
8 additions and
1 deletions
-
docs/getting_started.md
|
|
|
@ -11,7 +11,7 @@ Tye is a tool that makes developing, testing, and deploying microservices and di |
|
|
|
dotnet tool install -g Microsoft.Tye --version "0.1.0-alpha.20175.1" --add-source https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json |
|
|
|
``` |
|
|
|
|
|
|
|
OR |
|
|
|
OR if you already have Tye installed and want to update: |
|
|
|
|
|
|
|
```text |
|
|
|
dotnet tool update -g Microsoft.Tye --version "0.1.0-alpha.20175.1" --add-source https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json |
|
|
|
@ -37,3 +37,10 @@ This will install the newest available build from our CI. |
|
|
|
```txt |
|
|
|
dotnet tool install -g Microsoft.Tye --version "0.1.0-*" --add-source https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json |
|
|
|
``` |
|
|
|
|
|
|
|
If you aleady have a build installed and you want to update, replace `install` with `update`: |
|
|
|
|
|
|
|
```txt |
|
|
|
dotnet tool update -g Microsoft.Tye --version "0.1.0-*" --add-source https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json |
|
|
|
``` |
|
|
|
|
|
|
|
|