From dc3361bad040da363ff16820700a9dad57b28612 Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Thu, 17 Jul 2025 22:31:10 +0000 Subject: [PATCH 1/2] dotnet-aspire-9.4.md: Add instructions to get aspire-cli --- docs/whats-new/dotnet-aspire-9.4.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/whats-new/dotnet-aspire-9.4.md b/docs/whats-new/dotnet-aspire-9.4.md index 3ae6056d14..cc4e42ba6c 100644 --- a/docs/whats-new/dotnet-aspire-9.4.md +++ b/docs/whats-new/dotnet-aspire-9.4.md @@ -8,6 +8,22 @@ ms.date: 07/03/2025 _Aspire 9.4 introduces improvements across the CLI, dashboard, deployment, and provisioning experiences โ€” all designed to streamline developer workflows and reduce friction._ +## ๐Ÿ–ฅ๏ธ Aspire CLI enhancements + +๐Ÿงช The Aspire CLI is **still in preview** and under active development. Expect more features and polish in future releases. + +๐Ÿ“ฆ To install: + +On Windows: +```powershell +iex "& { $(irm https://github.com/dotnet/aspire/raw/refs/heads/main/eng/scripts/get-aspire-cli.ps1) }" +``` + +On Linux, or macOS: +```sh +curl -sSL https://github.com/dotnet/aspire/raw/refs/heads/main/eng/scripts/get-aspire-cli.sh | bash +``` + ## CLI and Dashboard This release introduces major enhancements to interactivity and diagnostics in the CLI and Dashboard. From validated user prompts to better logging visibility, Aspire now helps you catch configuration errors faster, streamline your local dev loop, and navigate logs more effectively. From 5fac3e3a56ff6385d9fca89f478358133375754b Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Thu, 17 Jul 2025 22:37:17 +0000 Subject: [PATCH 2/2] fix linter --- docs/whats-new/dotnet-aspire-9.4.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/whats-new/dotnet-aspire-9.4.md b/docs/whats-new/dotnet-aspire-9.4.md index cc4e42ba6c..2b301f613c 100644 --- a/docs/whats-new/dotnet-aspire-9.4.md +++ b/docs/whats-new/dotnet-aspire-9.4.md @@ -15,11 +15,13 @@ _Aspire 9.4 introduces improvements across the CLI, dashboard, deployment, and p ๐Ÿ“ฆ To install: On Windows: + ```powershell iex "& { $(irm https://github.com/dotnet/aspire/raw/refs/heads/main/eng/scripts/get-aspire-cli.ps1) }" ``` On Linux, or macOS: + ```sh curl -sSL https://github.com/dotnet/aspire/raw/refs/heads/main/eng/scripts/get-aspire-cli.sh | bash ```