[docs] CLI: mention 'Stopping Aspire...' feedback message on Ctrl+C#1353
Merged
IEvangelist merged 2 commits intoJul 13, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the aspire run CLI reference docs to mention the user-visible “stopping” feedback shown after pressing Ctrl+C while an AppHost shutdown is in progress.
Changes:
- Documented the Ctrl+C shutdown feedback message in the “Stopping the AppHost” section of
aspire-rundocs.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
Frontend HTML artifact readyThe latest frontend build uploaded the This comment updates automatically when a new frontend build artifact is uploaded. |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
IEvangelist
deleted the
docs/cli-stopping-message-feedback-163c3b8c164679e4
branch
July 13, 2026 12:38
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Supersedes #1201.
This replacement targets
elease/13.5 because the original
elease/13.4 base branch no longer exists on microsoft/aspire.dev.
Documents changes from microsoft/aspire#17652 by
@JamesNK.Targeting
release/13.4— the latest release branch onmicrosoft/aspire.dev— becauserelease/13.5(from the source PR milestone13.5) does not exist there.Why this PR is needed
PR microsoft/aspire#17652 introduced a user-visible change: when the user presses Ctrl+C, the Aspire CLI now immediately displays a
🛑 Stopping Aspire...message (after a brief 200 ms delay) to confirm that shutdown is in progress. Previously, no such confirmation message was shown promptly.The existing
aspire-run.mdxdocumented how to stop the AppHost but did not mention this feedback message. This PR adds a short sentence so users know what to expect when they press Ctrl+C.Changes
src/frontend/src/content/docs/reference/cli/commands/aspire-run.mdx: added a note to the "Stopping the AppHost" section explaining that🛑 Stopping Aspire...is displayed shortly after Ctrl+C is pressed.