[PR #1055] [MERGED] add vscode config #1479

Open
opened 2026-01-29 22:20:46 +00:00 by claunia · 0 comments
Owner

📋 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: masterHead: adam/vscode-fixes


📝 Commits (4)

  • 20353f3 add vscode config
  • 64a1cc6 Initial plan
  • 1e90d69 Update launch.json to use net10.0 instead of net8.0
  • 6920586 Merge 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:

  • Adds a .vscode/extensions.json file recommending essential .NET and C# extensions, including tools for development, formatting, and test exploration.
  • Introduces .vscode/settings.json to 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:

  • Adds .vscode/tasks.json defining tasks for building, restoring, cleaning, testing (across multiple frameworks), formatting, packaging, and running performance tests, integrating with the default .NET workflow.

Debugging configurations:

  • Provides .vscode/launch.json with 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.

## 📋 Pull Request Information **Original PR:** https://github.com/adamhathcock/sharpcompress/pull/1055 **Author:** [@adamhathcock](https://github.com/adamhathcock) **Created:** 11/30/2025 **Status:** ✅ Merged **Merged:** 11/30/2025 **Merged by:** [@adamhathcock](https://github.com/adamhathcock) **Base:** `master` ← **Head:** `adam/vscode-fixes` --- ### 📝 Commits (4) - [`20353f3`](https://github.com/adamhathcock/sharpcompress/commit/20353f35ff8baf564084d7a31a8d4cfbbc4ec519) add vscode config - [`64a1cc6`](https://github.com/adamhathcock/sharpcompress/commit/64a1cc68e1c7adf00947a9c31fe32f65bff4dabe) Initial plan - [`1e90d69`](https://github.com/adamhathcock/sharpcompress/commit/1e90d69912b2d0dd0fac4a6816622ed2b2381039) Update launch.json to use net10.0 instead of net8.0 - [`6920586`](https://github.com/adamhathcock/sharpcompress/commit/692058677c08d2ad058335c2636d2d7aa776cf26) Merge pull request #1056 from adamhathcock/copilot/sub-pr-1055 ### 📊 Changes **5 files changed** (+313 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+0 -1) ➕ `.vscode/extensions.json` (+9 -0) ➕ `.vscode/launch.json` (+97 -0) ➕ `.vscode/settings.json` (+29 -0) ➕ `.vscode/tasks.json` (+178 -0) </details> ### 📄 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:* - Adds a `.vscode/extensions.json` file recommending essential .NET and C# extensions, including tools for development, formatting, and test exploration. - Introduces `.vscode/settings.json` to 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:* - Adds `.vscode/tasks.json` defining tasks for building, restoring, cleaning, testing (across multiple frameworks), formatting, packaging, and running performance tests, integrating with the default .NET workflow. *Debugging configurations:* - Provides `.vscode/launch.json` with debug configurations for running and debugging tests, performance tests, and build scripts, including support for filtering specific tests and selecting build targets interactively. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 22:20:46 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/sharpcompress#1479