Re-converge VS Code/Husky task-label casing to template (.Net → .NET) - #768
Conversation
The ProjectTemplate re-sync (#764) brought in CODESTYLE.md, which mandates each tool's official casing in task labels (".NET", not ".Net"), but left this repo's task definitions on the old ".Net" casing - leaving the repo internally contradictory (CODESTYLE.md vs the actual task labels) and the documented tasks (".NET Build" / ".NET Format") not matching the real VS Code task labels. Converge to the template's official casing (upstream ptr727/ProjectTemplate uses ".NET" in .vscode/tasks.json and launch.json; the clean-compile task command sequences already match verbatim): - .vscode/tasks.json: ".Net *" labels -> ".NET *" (Build, Format, Tool Update, Outdated Upgrade) and the .NET Format dependsOn reference - .vscode/launch.json: 26x preLaunchTask ".Net Build" -> ".NET Build" - .husky/task-runner.json: ".Net Format" task name -> ".NET Format" - ARCHITECTURE.md: ".Net Build" task reference -> ".NET Build" - AGENTS.md: drop the now-obsolete ".Net task-label casing" deviation note; the casing now matches the template Husky.Net / CSharpier / Docker task labels are unchanged (already correct casing). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR re-aligns the repository's VS Code and Husky task-label naming to the ProjectTemplate/CODESTYLE convention by switching .Net ... task labels and references to the official .NET ... casing, without changing task behavior.
Changes:
- Rename
.vscode/tasks.jsontask labels to.NET ...and update the.NET FormatdependsOnreference. - Update
.vscode/launch.jsonpreLaunchTaskentries to reference.NET Build. - Update Husky and documentation references to match the new
.NET ...labels.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
.vscode/tasks.json | Renames VS Code task labels to .NET ... and updates internal task dependencies accordingly. |
.vscode/launch.json | Updates all preLaunchTask references from .Net Build to .NET Build. |
.husky/task-runner.json | Updates the Husky task name reference to .NET Format. |
ARCHITECTURE.md | Updates documentation to reference the .NET Build task label. |
AGENTS.md | Updates the template-adaptation note to reflect .NET casing; one remaining .Net ... reference elsewhere in the file still needs updating (see review comment). |
Uh oh!
There was an error while loading. Please reload this page.
Copilot review of #768 caught the "Verbatim carries" bullet (AGENTS.md) still listing the clean-compile tasks as `.Net Build` / `.Net Format`; converge to `.NET` to match the actual task labels and CODESTYLE.md. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
ptr727
commented
Jun 26, 2026
Good catch — fixed in the "Verbatim carries" bullet (AGENTS.md): the clean-compile tasks are now listed as |
Uh oh!
There was an error while loading. Please reload this page.
…framing) Copilot re-review of #768: AGENTS.md describes current conventions, not change history (HISTORY.md owns that). State the current `.NET` casing convention without the "former .Net casing was re-converged" framing. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
ptr727
commented
Jun 26, 2026
Reworded to current-state phrasing (dropped the before/after "re-converged" framing) so AGENTS.md describes the convention rather than the change history. |
Uh oh!
There was an error while loading. Please reload this page.
Context
The recent ProjectTemplate re-sync (#764) brought in
CODESTYLE.md, which mandates each tool's official casing in task labels (.NET, not.Net). But the sync left this repo's task definitions on the old.Netcasing, so the repo was left internally contradictory:CODESTYLE.mdsays use.NET(not.Net); the actual VS Code task labels were.Net Build/.Net Format..NET Build/.NET Formattasks didn't match the real task labels.AGENTS.mddocumented the.Netcasing as an intentional "historical choice" — directly contradicting the syncedCODESTYLE.md.Upstream
ptr727/ProjectTemplateuses.NETcasing in.vscode/tasks.jsonandlaunch.json, and the clean-compile task command sequences already match verbatim — only the label casing had drifted. This is a re-convergence of that incomplete sync (per the template's "Staying in Sync" guidance in its AGENTS.md/README).Changes (casing only — no behavior/command changes)
.vscode/tasks.json:.Net *labels →.NET *(Build, Format, Tool Update, Outdated Upgrade) + the.NET FormatdependsOnreference.vscode/launch.json: 26×preLaunchTask: ".Net Build"→.NET Build.husky/task-runner.json:.Net Formattask name →.NET FormatARCHITECTURE.md:.Net Buildtask reference →.NET BuildAGENTS.md: drop the now-obsolete.Netcasing deviation note (casing now matches the template)Husky.Net Run,CSharpier Format, and the Docker task labels are unchanged (already correct casing).🤖 Generated with Claude Code