NuGet Package Management When to Use This Skill Use this skill when: - Adding, removing, or updating NuGet packages - Setting up Central Package Management (CPM) for a solution - Managing package versions across multiple projects - Troubleshooting package conflicts or restore issues --- Golden Rule: Never Edit XML Directly Always use CLI commands to manage packages. Never manually edit or files. Why: - CLI validates package exists and resolves correct version - Handles transitive dependencies correctly - Updates lock files if present - Avoids typos and malformed XML - Works correctly with CPM…