Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions docs/using-latest-daily.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,17 @@ If you use [Package Source Mapping](https://learn.microsoft.com/en-us/nuget/cons

## Install the daily CLI

```sh
dotnet tool install --global aspire.cli --prerelease --source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json
On Windows:

```powershell
iex "& { $(irm https://github.com/dotnet/aspire/raw/refs/heads/main/eng/scripts/get-aspire-cli.ps1) }"
```

now `aspire` will be available as a [tool](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-tool-install).
On Linux, or macOS:

```sh
curl -sSL https://github.com/dotnet/aspire/raw/refs/heads/main/eng/scripts/get-aspire-cli.sh | bash
```

<!-- break between blocks -->

Expand Down
Loading