From fc52202202397df062da1dd7ae337f73d3b1dc28 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Thu, 9 Apr 2020 22:45:40 -0700 Subject: [PATCH] Update getting_started.md Update getting started with new version numbers for CI Builds --- docs/getting_started.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/getting_started.md b/docs/getting_started.md index a7f2ffba..26181362 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -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 -``` \ No newline at end of file +```