Update getting started with new version numbers for CI Builds
This commit is contained in:
Ryan Nowak 2020-04-09 22:45:40 -07:00 коммит произвёл GitHub
Родитель 9d3aaa712d
Коммит fc52202202
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -35,15 +35,17 @@ Tye is a tool that makes developing, testing, and deploying microservices and di
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
dotnet tool install -g Microsoft.Tye --version "0.2.0-*" --add-source https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json
```
If you already 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
dotnet tool update -g Microsoft.Tye --version "0.2.0-*" --add-source https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json
```
> :bulb: Note that the version numbers for our CI builds and released packages will usually be different.
If you are using CI builds of Tye we also recommend using CI builds of our libraries as well with the matching version. To add the `dotnet-core` package source add a `NuGet.config` to your repository or solution directory.
```xml
@ -55,4 +57,4 @@ If you are using CI builds of Tye we also recommend using CI builds of our libra
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
```
```