Browse Source

0.2 to 0.3

pull/550/merge
Justin Kotalik 6 years ago
parent
commit
53a1ac81a4
  1. 4
      docs/getting_started.md
  2. 2
      docs/tutorials/hello-tye/00_run_locally.md

4
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

2
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:

Loading…
Cancel
Save