mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
[PR #1055] add vscode config #1483
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?
Original Pull Request: https://github.com/adamhathcock/sharpcompress/pull/1055
State: closed
Merged: Yes
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.