Upgrade workflow
Skill gaelic-ghost/socket/plugins/dotnet-skills/skills/upgrade-workflow
Plan and validate .NET SDK, target framework, package, and language-version upgrades for F#, C#, and mixed solutions with compatibility checks and staged validation.From its SKILL.md
npx -y skills add gaelic-ghost/socket --skill upgrade-workflowAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.2 KB, 829 tokens by cl100k_base, as published. Nobody here has run it
.NET Upgrade Workflow
Purpose
Upgrade .NET projects without losing track of compatibility, validation, or language-specific behavior.
The practical job is to inventory SDK and target framework state, choose the upgrade boundary, apply the smallest coherent change, run staged validation, and document migration notes when users or package consumers need them.
When To Use
- Use this skill when changing
TargetFrameworkorTargetFrameworks. - Use this skill when changing
global.json. - Use this skill when upgrading package versions across a .NET solution.
- Use this skill when moving between .NET major versions.
- Use this skill when F# or C# language behavior may change with the SDK or target framework.
Source Check
Use repo-local files, checked-out dependency sources, Dash MCP or Dash HTTP for installed docsets, and then official project documentation when Dash/local coverage is missing or stale:
- .NET breaking changes reference
- Breaking changes may occur when porting code
global.jsondocumentationdotnet sdk checkdocumentation- .NET CLI documentation
Upgrade Workflow
- Inventory current state:
rg -n "TargetFramework|TargetFrameworks|LangVersion|PackageReference|PackageVersion|Sdk=" . rg --files -g 'global.json' -g 'Directory.Build.props' -g 'Directory.Packages.props' -g '*.fsproj' -g '*.csproj' -g '*.sln' -g '*.slnx' - Check installed SDKs when local validation is required:
dotnet --list-sdks dotnet sdk check - Decide upgrade boundary:
- SDK only
- target framework only
- package versions only
- SDK plus target framework
- package plus framework compatibility pass
- Read breaking-change notes for the source and target versions.
- Apply one coherent upgrade slice.
- Run staged validation:
dotnet restoredotnet builddotnet testdotnet packwhen package surfaces exist
- Update docs or release notes when public behavior, package requirements, or contributor setup changes.
F# Upgrade Notes
For F#:
- check compiler or language-version behavior before changing project defaults
- inspect
.fsprojordering after automated edits - watch for APIs that become more awkward across async/task boundaries
- run tests that cover discriminated union, option, and record serialization when those are public contracts
C# Upgrade Notes
For C#:
- check nullable and analyzer behavior after SDK changes
- avoid broad warning suppression after analyzer updates
- decide whether new language features belong in the repo style before using them
- check source generators or analyzers when present
Output Shape
Return:
Upgrade boundary: SDK, target framework, packages, or combination.Before: current SDK, TFM, package, and language state.After: target SDK, TFM, package, and language state.Compatibility notes: breaking changes or migration concerns checked.Validation: exact commands and results.Docs: README, contributing, release notes, or package guidance updated.
Guardrails
- Do not upgrade multiple unrelated surfaces in one commit without a clear reason.
- Do not ignore official breaking-change notes for major upgrades.
- Do not commit machine-local SDK paths or private package feeds.
- Do not suppress new analyzer warnings without explaining the rule and reason.
- Do not call an upgrade complete until build and tests have run or the blocker is explicit.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.