Add Getting Started walkthrough to VS Code extension#14872
Merged
adamint merged 3 commits intomicrosoft:release/13.2from Mar 3, 2026
Merged
Add Getting Started walkthrough to VS Code extension#14872adamint merged 3 commits intomicrosoft:release/13.2from
adamint merged 3 commits intomicrosoft:release/13.2from
Conversation
Contributor
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.sh | bash -s -- 14872Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.ps1) } 14872" |
396908d to
89e27f9
Compare
89e27f9 to
9d8c61b
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a Getting Started walkthrough to the Aspire VS Code extension to onboard new users (CLI install → project creation → run/debug → dashboard → next steps) directly inside VS Code.
Changes:
- Introduces 6 walkthrough markdown panels under
extension/walkthrough/and wires them intocontributes.walkthroughs. - Adds 3 new walkthrough-focused commands to install/verify the Aspire CLI and registers them during extension activation.
- Localizes all new command titles and walkthrough step titles/descriptions via
package.nls.json.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| extension/walkthrough/welcome.md | Walkthrough step content: Aspire overview, benefits, and how it works. |
| extension/walkthrough/installCli.md | Walkthrough step content: stable/daily install instructions + command links. |
| extension/walkthrough/createProject.md | Walkthrough step content: scaffolding a project and apphost explanation. |
| extension/walkthrough/runApp.md | Walkthrough step content: run/debug flow and dashboard link/screenshot. |
| extension/walkthrough/dashboard.md | Walkthrough step content: dashboard concepts and health statuses. |
| extension/walkthrough/nextSteps.md | Walkthrough step content: integrations, deployment, and learning links. |
| extension/src/extension.ts | Registers the new walkthrough commands with VS Code. |
| extension/src/commands/walkthroughCommands.ts | Implements terminal-based CLI install (stable/daily) and verify commands. |
| extension/package.nls.json | Adds localized strings for the new commands and walkthrough steps. |
| extension/package.json | Contributes the new commands and the new walkthrough definition. |
9d8c61b to
0cdebd7
Compare
maddymontaquila
approved these changes
Mar 3, 2026
| **The apphost** is the heart of your app — it defines everything in code: | ||
|
|
||
| ```csharp | ||
| var builder = DistributedApplication.CreateBuilder(args); |
Contributor
There was a problem hiding this comment.
This is good for now but when we ship 13.2 maybe replace it w whatever typescript template we ship?
Co-authored-by: Maddy Montaquila (Leger) <maddyleger1@gmail.com>
Copilot AI
pushed a commit
that referenced
this pull request
Mar 10, 2026
* Add Getting Started walkthrough to VS Code extension * Update extension/walkthrough/dashboard.md Co-authored-by: Maddy Montaquila (Leger) <maddyleger1@gmail.com> --------- Co-authored-by: Maddy Montaquila (Leger) <maddyleger1@gmail.com>
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.
Description
Adds a Getting Started walkthrough to the Aspire VS Code extension. The walkthrough guides new users through installing the CLI, creating a project, running their app, exploring the dashboard, and next steps — all from within VS Code.
What's included
6 walkthrough steps:
3 new commands for the install step:
aspire-vscode.installCliStable— runs the stable CLI install script in a terminalaspire-vscode.installCliDaily— runs the daily/preview CLI install script in a terminalaspire-vscode.verifyCliInstalled— runsaspire --versionto verify installationAll strings are localized via
package.nls.json. Markdown panels include clickablecommand:links to run extension commands directly.Screenshots
Welcome to Aspire
Install the Aspire CLI
Create a new project
Run your app
Explore the dashboard
Next steps
Fixes #11910
Checklist
<remarks />and<code />elements on your triple slash comments?aspire.devissue: