gestion-paquetes-nuget

Manage NuGet packages across .NET solutions using dotnet CLI commands.

Updated Apr 25, 2026
One-click install
npx skills add https://github.com/tomasbasso/SistemaStockV2 --skill gestion-paquetes-nuget
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: gestion-paquetes-nuget
Source: https://github.com/tomasbasso/SistemaStockV2/tree/main/.agents/skills/gestion-paquetes-nuget
Command: npx skills add https://github.com/tomasbasso/SistemaStockV2 --skill gestion-paquetes-nuget

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill ensures consistent NuGet package management across .NET projects by enforcing CLI-based workflows to avoid manual edits and version drift.

Core Features & Use Cases

  • CLI-driven management: Use dotnet add package and dotnet remove package to modify dependencies, centralizing version control when possible.
  • Version safety: Verify that requested versions exist on NuGet before applying updates and perform a restore afterward to ensure compatibility.
  • Scope and guidance: Applies to single projects or multi-project solutions, supporting central management via Directory.Packages.props and per-project edits when needed.

Quick Start

Use the dotnet CLI to manage NuGet packages across the solution following the prescribed commands and rules.

Frequently Asked Questions about gestion-paquetes-nuget

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage NuGet packages across multiple .NET projects without version drift?▼

Validate NuGet package versions before applying updates by verifying that requested versions exist on the NuGet server. Execute a dotnet restore command afterward to ensure all dependencies are successfully resolved and compatible.

What is the best way to add a NuGet package to a .NET solution using the dotnet CLI?▼

Remove outdated dependencies from .NET projects using the dotnet remove package command. This CLI-driven workflow applies to both single-project and multi-project solutions, maintaining clean dependency trees without manual file edits.

Does central NuGet package management work with Directory.Packages.props?▼

Central NuGet package management works with Directory.Packages.props to enforce consistent versioning across solutions. The CLI-based workflow automatically integrates with this central version strategy for both additions and removals.

How do I validate NuGet package versions before applying upgrades in .NET?▼

Validate NuGet package versions before applying upgrades by verifying that requested versions exist on the NuGet server. Execute a dotnet restore command afterward to ensure all dependencies are successfully resolved and compatible.