dotnet-centralise-packages

Installation
SKILL.md

Convert the current .NET solution to use Central Package Management, centralizing all package versions in a single Directory.Packages.props file.

Steps

  1. Find the solution file (*.sln) in the current directory

    • If no .sln found, warn and stop
  2. List all packages (including transitive)

    dotnet package list --include-transitive --format json
    
  3. Parse JSON output to extract:

    • All unique packages across all projects
    • Their versions
    • Whether each package is direct or transitive
    • If same package has different versions, use the highest version
Installs
2
Repository
im5tu/claude
GitHub Stars
1
First Seen
May 20, 2026
dotnet-centralise-packages — im5tu/claude