Skip to content

Commit a4351bd

Browse files
committed
using-latest-daily.md: Update instructions to get cli (dotnet#10506)
(cherry picked from commit 0567c27)
1 parent 9a36dc3 commit a4351bd

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

docs/using-latest-daily.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,17 @@ If you use [Package Source Mapping](https://learn.microsoft.com/en-us/nuget/cons
3737

3838
## Install the daily CLI
3939

40-
```sh
41-
dotnet tool install --global aspire.cli --prerelease --source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json
40+
On Windows:
41+
42+
```powershell
43+
iex "& { $(irm https://github.com/dotnet/aspire/raw/refs/heads/main/eng/scripts/get-aspire-cli.ps1) }"
4244
```
4345

44-
now `aspire` will be available as a [tool](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-tool-install).
46+
On Linux, or macOS:
47+
48+
```sh
49+
curl -sSL https://github.com/dotnet/aspire/raw/refs/heads/main/eng/scripts/get-aspire-cli.sh | bash
50+
```
4551

4652
<!-- break between blocks -->
4753

0 commit comments

Comments
 (0)