Fix dashboard image in marketplace README and bump extension version to 1.0.6#15379
Conversation
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.sh | bash -s -- 15379Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.ps1) } 15379" |
There was a problem hiding this comment.
Pull request overview
Updates the VS Code extension metadata and README so the Marketplace listing displays the Aspire dashboard screenshot correctly, while also bumping the extension version for the next publish.
Changes:
- Bump VS Code extension version from 1.0.5 to 1.0.6.
- Replace the README dashboard screenshot reference with an absolute
raw.githubusercontent.comURL.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| extension/package.json | Updates the extension version to 1.0.6 for publishing. |
| extension/README.md | Switches the dashboard screenshot to an absolute URL intended to render correctly on the Marketplace page. |
You can also share your feedback on Copilot code review. Take the survey.
| The dashboard gives you a live view of your running app — all your resources and their health, endpoint URLs, console logs from every service, structured logs (via OpenTelemetry), distributed traces across services, and metrics. | ||
|
|
||
|  | ||
|  |
|
Re-running the failed jobs in the CI workflow for this pull request because 1 job was identified as retry-safe transient failures in the CI run attempt.
|
) * Add right-click context menu on resource endpoint URLs (#15347) Add three context menu actions for endpoint URL tree items in the Running AppHosts tree view: - Copy URL to Clipboard - Open in External Browser - Open in Simple Browser Introduces EndpointUrlItem TreeItem subclass with contextValue 'endpointUrl' to enable context menu targeting, replacing the generic DetailItem for endpoint URLs. Fixes #15345 Co-authored-by: Mitch Denny <mitch@mitchdeny.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Clean up Aspire panel: context menus, loading state, welcome messages (#15375) * Clean up Aspire panel: context menus, loading state, welcome messages Adds initial 'loading' screen, new context menus for resources, endpoints, apphost, and PID nodes. Consolidates previous 3 commits into one for clean rebase onto main. * remove unused strings * remove comands on resources node, update string * Add AppHost CodeLens and gutter decoration support (#15397) * Add CodeLens and gutter decoration support for AppHost resources * wip * remove status bar strings from branch * Add CodeLens, gutter decorations, and AppHost resource parsers for VS Code extension - Add CodeLens provider showing resource state, actions (start/stop/restart), and view logs - Add gutter decoration provider with colored status circles for resources - Add C# and JS/TS AppHost resource parsers with registry pattern - Add statementStartLine for multi-line fluent chain CodeLens positioning - Add comment-skipping logic so CodeLens appears below comments, above code - Extract shared resource state utilities and resource constants - Add enableCodeLens and enableGutterDecorations settings - Add comprehensive test coverage (parsers, CodeLens, resourceStateUtils) - Only match parent resources (Add* calls), not implicit child resources (With* calls) * Address Copilot review: conditional appHostPath, displayName preference, Unhealthy as error - Guard --apphost flag when appHostPath is falsy in CodeLens commands - Prefer displayName over name in two-pass resource matching - Classify Unhealthy health status as error (not warning) to align with tree view * bump extension version * update config json * Fix dashboard image in marketplace README and bump version to 1.0.6 (#15379) * Fix dashboard image URL: dotnet -> microsoft (#15466 partial) --------- Co-authored-by: Mitch Denny <midenn@microsoft.com> Co-authored-by: Mitch Denny <mitch@mitchdeny.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Description
Fix the Aspire Dashboard image not displaying on the VS Code Marketplace page.
The README used a relative path (
resources/aspire-dashboard-dark.png) for the dashboard screenshot, which doesn't resolve on the Marketplace since the extension lives in theextension/subdirectory of the repo. Changed to an absolute raw GitHub URL, matching the pattern used by other Microsoft extensions (e.g., ms-python.python).Also bumps the extension version from 1.0.5 to 1.0.6.
Checklist
<remarks />and<code />elements on your triple slash comments?aspire.devissue: