Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
3ffcd36
Add scripts to download aspire-cli
radical Jul 3, 2025
06552a2
Update eng/scripts/get-aspire-cli.sh
radical Jul 3, 2025
c45b215
Merge remote-tracking branch 'origin/main' into get-aspire-cli-scripts
radical Jul 7, 2025
bc855ed
update the scripts
radical Jul 7, 2025
8c4edc4
Update eng/scripts/get-aspire-cli.sh
radical Jul 7, 2025
372f899
Update eng/scripts/get-aspire-cli.ps1
radical Jul 7, 2025
0820d14
add a README.md
radical Jul 7, 2025
8f4d0bc
update README.md
radical Jul 7, 2025
0621834
address review feedback from @ eerhardt
radical Jul 7, 2025
c8dccb8
Address review feedback from @ blowdart and use mime-type to detect w…
radical Jul 7, 2025
6664feb
fix ps1 for modern powershell
radical Jul 7, 2025
01ecfac
Cleanup the ps1 script
radical Jul 7, 2025
73b1379
clean up .sh script, and don't use that ldd is available
radical Jul 7, 2025
877c329
Merge remote-tracking branch 'origin/main' into get-aspire-cli-scripts
radical Jul 7, 2025
6561c32
Update eng/scripts/get-aspire-cli.ps1
radical Jul 8, 2025
41544b0
Use different names for persistent and session scoped networks (#10278)
danegsta Jul 7, 2025
affb837
Address review feedback from @ eerhardt and bump archive download tim…
radical Jul 8, 2025
95dfd0c
Address review feedback from @ eerhardt and change Channel parameter …
radical Jul 8, 2025
2fb6065
Merge remote-tracking branch 'origin/main' into get-aspire-cli-scripts
radical Jul 8, 2025
ae772b0
Address review feedback from @ eerhardt - update README.md
radical Jul 9, 2025
48b262f
Address review feedback - Rename BuildQuality to Quality
radical Jul 9, 2025
f788557
Merge remote-tracking branch 'origin/main' into get-aspire-cli-scripts
radical Jul 11, 2025
3986ae1
Merge remote-tracking branch 'origin/main' into get-aspire-cli-scripts
radical Jul 13, 2025
7e6506f
Improve Aspire CLI download script with auto-installation and PATH ma…
radical Jul 14, 2025
c09d588
update ps1
radical Jul 14, 2025
67908b4
Merge remote-tracking branch 'origin/main' into get-aspire-cli-scripts
radical Jul 14, 2025
e85ae0b
update README.md
radical Jul 14, 2025
2a43c92
Update eng/scripts/get-aspire-cli.sh
radical Jul 14, 2025
3baae6e
Add the install path to the PATH env var also
radical Jul 14, 2025
ef81d43
refactor to extract function to get install path
radical Jul 14, 2025
5b01fe0
Extract method to download and install the archive
radical Jul 14, 2025
323b9bc
some cleanup and refactoring
radical Jul 15, 2025
205d15b
cleanup
radical Jul 15, 2025
cd1d032
Update eng/scripts/get-aspire-cli.sh
radical Jul 15, 2025
4d6e44e
fix script
radical Jul 15, 2025
a0dadea
Merge remote-tracking branch 'origin/main' into get-aspire-cli-scripts
radical Jul 15, 2025
d12589b
Address review feedback from @ davidfowl
radical Jul 15, 2025
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
Prev Previous commit
Next Next commit
Address review feedback from @ eerhardt - update README.md
  • Loading branch information
radical committed Jul 9, 2025
commit ae772b04e8fa2181be1fc6fc04e468ac9a4ba1fd
42 changes: 21 additions & 21 deletions eng/scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,37 +10,37 @@ This directory contains scripts to download and install the Aspire CLI for diffe
## Current Limitations

⚠️ **Important**: Currently, only the following combination works:
- **Channel**: `9.0`
- **Version**: `9.0`
- **Build Quality**: `daily`

Other channel/quality combinations are not yet available through the download URLs.
Other version/quality combinations are not yet available through the download URLs.

## Parameters

### Bash Script (`get-aspire-cli.sh`)

| Parameter | Short | Description | Default |
|-----------|-------|-------------|---------|
| `--output-path` | `-o` | Directory to unpack the CLI | `./aspire-cli` |
| `--channel` | `-c` | Channel of the Aspire CLI to download | `9.0` |
| `--quality` | `-q` | Build quality to download | `daily` |
| `--os` | | Operating system (auto-detected if not specified) | auto-detect |
| `--architecture` | | Architecture (auto-detected if not specified) | auto-detect |
| `--keep-archive` | `-k` | Keep downloaded archive files after installation | `false` |
| `--verbose` | `-v` | Enable verbose output | `false` |
| `--help` | `-h` | Show help message | |
| Parameter | Short | Description | Default |
|------------------|-------|---------------------------------------------------|----------------|
| `--output-path` | `-o` | Directory to unpack the CLI | `./aspire-cli` |
| `--version` | | Version of the Aspire CLI to download | `9.0` |
| `--quality` | `-q` | Build quality to download | `daily` |
| `--os` | | Operating system (auto-detected if not specified) | auto-detect |
| `--architecture` | | Architecture (auto-detected if not specified) | auto-detect |
| `--keep-archive` | `-k` | Keep downloaded archive files after installation | `false` |
| `--verbose` | `-v` | Enable verbose output | `false` |
| `--help` | `-h` | Show help message | |

### PowerShell Script (`get-aspire-cli.ps1`)

| Parameter | Description | Default |
|-----------|-------------|---------|
| `-OutputPath` | Directory to unpack the CLI | `./aspire-cli` |
| `-Channel` | Channel of the Aspire CLI to download | `9.0` |
| `-BuildQuality` | Build quality to download | `daily` |
| `-OS` | Operating system (auto-detected if not specified) | auto-detect |
| `-Architecture` | Architecture (auto-detected if not specified) | auto-detect |
| `-KeepArchive` | Keep downloaded archive files after installation | `false` |
| `-Help` | Show help message | |
| Parameter | Description | Default |
|-----------------|---------------------------------------------------|----------------|
| `-OutputPath` | Directory to unpack the CLI | `./aspire-cli` |
| `-Version` | Version of the Aspire CLI to download | `9.0` |
| `-BuildQuality` | Build quality to download | `daily` |
| `-OS` | Operating system (auto-detected if not specified) | auto-detect |
| `-Architecture` | Architecture (auto-detected if not specified) | auto-detect |
| `-KeepArchive` | Keep downloaded archive files after installation | `false` |
| `-Help` | Show help message | |

## Output Path Parameter

Expand Down