mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
[PR #1055] [MERGED] add vscode config #1479
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/adamhathcock/sharpcompress/pull/1055
Author: @adamhathcock
Created: 11/30/2025
Status: ✅ Merged
Merged: 11/30/2025
Merged by: @adamhathcock
Base:
master← Head:adam/vscode-fixes📝 Commits (4)
20353f3add vscode config64a1cc6Initial plan1e90d69Update launch.json to use net10.0 instead of net8.06920586Merge pull request #1056 from adamhathcock/copilot/sub-pr-1055📊 Changes
5 files changed (+313 additions, -1 deletions)
View changed files
📝
.gitignore(+0 -1)➕
.vscode/extensions.json(+9 -0)➕
.vscode/launch.json(+97 -0)➕
.vscode/settings.json(+29 -0)➕
.vscode/tasks.json(+178 -0)📄 Description
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.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.