[docs] CLI: mention 'Stopping Aspire...' feedback message on Ctrl+C#1201
Closed
aspire-repo-bot[bot] wants to merge 1 commit into
Closed
[docs] CLI: mention 'Stopping Aspire...' feedback message on Ctrl+C#1201aspire-repo-bot[bot] wants to merge 1 commit into
aspire-repo-bot[bot] wants to merge 1 commit into
Conversation
Update the 'Stopping the AppHost' section of aspire-run.mdx to note that the CLI displays a '🛑 Stopping Aspire...' message shortly after the user presses Ctrl+C, confirming that shutdown is in progress. Documents the user-facing behavior added by microsoft/aspire#17652. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Author
Frontend HTML artifact readyThe latest frontend build uploaded the This comment updates automatically when a new frontend build artifact is uploaded. |
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.
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.