Skip to main content
Back to registry

nuget-manager

github/awesome-copilot

This skill ensures consistent and safe management of NuGet packages across .NET projects. It prioritizes using the dotnet CLI to maintain project integrity and enforces a strict verification and restoration workflow for version updates.

Installs7
Install command
npx skills add https://github.com/github/awesome-copilot --skill nuget-manager
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
This skill ensures consistent and safe management of NuGet packages across .NET projects. It prioritizes using the dotnet CLI to maintain project integrity and enforces a strict verification and restoration workflow for version updates. Use dotnet add [ ] package [--version ] . Example: dotnet add src/MyProject/MyProject.csproj package Newtonsoft.Json Use dotnet remove [ ] package . Example: dotnet remove src/MyProject/MyProject.csproj package Newtonsoft.Json When updating a version, follow these steps: Verify Version Existence : Check if the version exists using the dotnet package search command with exact match and JSON formatting. Using jq : dotnet package search --exact-match --format json | jq -e '.searchResult[].packages[] | select(.version == " ")' Using PowerShell: (dotnet package search --exact-match --format json | ConvertFrom-Json).searchResult.packages | Where-Object { $_.version -eq " " } Determine Version Management : Apply Changes : Modify the identified file with the new version string. Verify Stability : Run dotnet restore on the project or solution. If errors occur, revert the change and investigate.

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does nuget-manager do?

This skill ensures consistent and safe management of NuGet packages across .NET projects. It prioritizes using the dotnet CLI to maintain project integrity and enforces a strict verification and restoration workflow for version updates.

Is nuget-manager good?

nuget-manager does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does nuget-manager work with?

nuget-manager currently lists compatibility with Agent compatibility has not been published yet..

What are alternatives to nuget-manager?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install nuget-manager?

npx skills add https://github.com/github/awesome-copilot --skill nuget-manager

Related skills

More from github/awesome-copilot

Related skills

Alternatives in Software Engineering