Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds comprehensive Visual Studio Code workspace configuration to support .NET development workflows for the SharpCompress project. The configuration includes recommended extensions, editor settings, build/test tasks, and debug configurations, making it easier for developers to work with the project in VS Code.
Key Changes:
- Adds VS Code workspace files for extensions, settings, tasks, and debugging
- Configures build, test, and formatting tasks for multiple .NET target frameworks (net10.0, net48)
- Removes
.vscodefrom.gitignoreto version control the workspace configuration
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
.vscode/tasks.json |
Defines build, test, clean, restore, format, pack, and performance test tasks for the .NET solution with support for multiple target frameworks |
.vscode/settings.json |
Configures solution defaults, file/search exclusions, CSharpier formatting, and Roslyn analyzer support |
.vscode/launch.json |
Provides debug configurations for running tests, performance tests, and build scripts |
.vscode/extensions.json |
Recommends essential .NET/C# development extensions including C# DevKit, CSharpier, and test explorer |
.gitignore |
Removes .vscode exclusion to allow workspace configuration files to be committed |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
|
@adamhathcock I've opened a new pull request, #1056, to work on those changes. Once the pull request is ready, I'll request review from you. |
Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com>
Fix launch.json debug configurations to use net10.0
This was referenced Jan 5, 2026
This was referenced Jan 12, 2026
This was referenced Jan 19, 2026
This was referenced Jan 26, 2026
This was referenced Feb 11, 2026
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.
This pull request adds a comprehensive Visual Studio Code workspace configuration for the project, streamlining development and testing workflows. It introduces recommended extensions, editor and search settings, build and test tasks, and debugging configurations tailored for .NET development.
VS Code Workspace Configuration:
Recommended extensions and editor settings:
.vscode/extensions.jsonfile recommending essential .NET and C# extensions, including tools for development, formatting, and test exploration..vscode/settings.jsonto configure solution defaults, file exclusions (e.g.,bin,obj,artifacts), C# formatting with CSharpier, and enables Roslyn analyzers and EditorConfig support.Build, test, and utility tasks:
.vscode/tasks.jsondefining tasks for building, restoring, cleaning, testing (across multiple frameworks), formatting, packaging, and running performance tests, integrating with the default .NET workflow.Debugging configurations:
.vscode/launch.jsonwith debug configurations for running and debugging tests, performance tests, and build scripts, including support for filtering specific tests and selecting build targets interactively.