diff --git a/docs/getting_started.md b/docs/getting_started.md index 744a00d7..90bf3dbd 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -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.2.0-alpha.20258.3" + dotnet tool install -g Microsoft.Tye --version "0.3.0-alpha.20318.3" ``` OR if you already have Tye installed and want to update: ```text - dotnet tool update -g Microsoft.Tye --version "0.2.0-alpha.20258.3" + dotnet tool update -g Microsoft.Tye --version "0.3.0-alpha.20318.3" ``` ## Next steps diff --git a/docs/tutorials/hello-tye/00_run_locally.md b/docs/tutorials/hello-tye/00_run_locally.md index 9ebb1e89..0678841e 100644 --- a/docs/tutorials/hello-tye/00_run_locally.md +++ b/docs/tutorials/hello-tye/00_run_locally.md @@ -126,7 +126,7 @@ Now that we have two applications running, let's make them communicate. By defau 4. Add a reference to the `Microsoft.Tye.Extensions.Configuration` package to the frontend project ```txt - dotnet add frontend/frontend.csproj package Microsoft.Tye.Extensions.Configuration --version "0.2.0-*" + dotnet add frontend/frontend.csproj package Microsoft.Tye.Extensions.Configuration --version "0.3.0-*" ``` 5. Now register this client in `frontend` by adding the following to the existing `ConfigureServices` method to the existing `Startup.cs` file: