Add .code-workspace files for all solutions#52839
Merged
tmat merged 2 commits intodotnet:release/10.0.3xxfrom Feb 6, 2026
Merged
Add .code-workspace files for all solutions#52839tmat merged 2 commits intodotnet:release/10.0.3xxfrom
tmat merged 2 commits intodotnet:release/10.0.3xxfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds .code-workspace files for all solutions in the repository to enable opening solutions in VS Code directly from the command line or Windows File Explorer. This serves as a workaround for VS Code not supporting opening .sln or .slnf files directly.
Changes:
- Added
.code-workspacefiles for each solution filter - Updated global.json to bump dotnet and Arcade SDK versions
- Enhanced dotnet-watch with improved static web asset handling and logging
- Refactored CLI command definitions into a new shared assembly
- Improved hot reload client async handling and error reporting
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| sdk.code-workspace | Workspace file for sdk.slnx |
| cli.code-workspace | Workspace file for cli.slnf |
| containers.code-workspace | Workspace file for containers.slnf |
| TemplateEngine.code-workspace | Workspace file for TemplateEngine.slnf |
| source-build.code-workspace | Workspace file for source-build.slnf |
| global.json | Updated dotnet and Arcade SDK versions |
| src/Cli/Microsoft.DotNet.Cli.Definitions/* | New shared CLI definitions assembly with command definitions, help builders, and utilities |
| src/BuiltInTools/dotnet-watch/* | Enhanced static web asset handling, improved logging levels, and refactored command line parsing |
| src/BuiltInTools/HotReloadClient/* | Improved async handling for update batching and static asset updates |
| eng/Versions.props | Version bumps and publishing configuration updates |
| Directory.Build.props | Disabled NuGet Audit temporarily |
Member
Author
MiYanni
approved these changes
Feb 5, 2026
Member
|
/ba-g no build run for non-building changes |
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.
Allows to open a solution in VS Code from command line and Windows File Explorer: e.g.
code sdk.code-workspace.Workaround for VS Code not supporting opening sln(x|f) files directly.