File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments