John Luo
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
12 additions and
7 deletions
docs/getting_started.md
eng/StagingRelease.md
eng/Versions.props
@ -8,13 +8,13 @@ Tye is a tool that makes developing, testing, and deploying microservices and di
2. Install tye via the following command:
```text
dotnet tool install -g Microsoft.Tye --version "0.4.0-alpha.20371 .1"
dotnet tool install -g Microsoft.Tye --version "0.5.0-alpha.20555 .1"
```
OR if you already have Tye installed and want to update:
```text
dotnet tool update -g Microsoft.Tye --version "0.4.0-alpha.20371 .1"
dotnet tool update -g Microsoft.Tye --version "0.5.0-alpha.20555 .1"
```
## Next steps
@ -28,16 +28,16 @@ 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.5 .0-*" --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json
dotnet tool install -g Microsoft.Tye --version "0.6 .0-*" --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/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.5 .0-*" --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json
dotnet tool update -g Microsoft.Tye --version "0.6 .0-*" --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json
```
> :bulb: Note that the version numbers for our CI builds and released packages will usually be different.
> :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.
@ -10,4 +10,9 @@
- Update [getting started ](/docs/getting_started.md ) and other places in tutorial to just released version.
- Update [Working with CI builds ](docs/getting_started.md ) with next version.
- Update [Version.props ](eng/Versions.props ) to next version.
- Update [Version.props ](eng/Versions.props ) to next version.
## Tag release
- `git tag release/<version>`
- `git push --tags`
@ -2,7 +2,7 @@
<Project>
<PropertyGroup>
<!-- This repo version -->
<VersionPrefix>0.5 .0</VersionPrefix>
<VersionPrefix>0.6 .0</VersionPrefix>
<PreReleaseVersionLabel>alpha</PreReleaseVersionLabel>
<!-- Opt-out repo features -->
<UsingToolXliff>false</UsingToolXliff>