dotnet-local-tools
✓Managing local .NET tools with dotnet-tools.json for consistent tooling across development environments and CI/CD pipelines.
Installation
SKILL.md
Local tools are .NET CLI tools that are installed and versioned per-repository rather than globally. They're defined in .config/dotnet-tools.json and restored with dotnet tool restore.
| Installation | dotnet tool install -g | dotnet tool restore | | Scope | Machine-wide | Per-repository | | Version control | Manual | In .config/dotnet-tools.json | | CI/CD | Must install each tool | Single restore command | | Conflicts | Can have version conflicts | Isolated per project |
| version | Manifest schema version (always 1) | | isRoot | Marks this as the root manifest (prevents searching parent directories) | | tools | Dictionary of tool configurations | | tools. .version | Exact version to install | | tools. .commands | CLI commands the tool provides |
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/aaronontheweb/dotnet-skills --skill dotnet-local-tools- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-05
- Updated
- 2026-02-18
Quick answers
What is dotnet-local-tools?
Managing local .NET tools with dotnet-tools.json for consistent tooling across development environments and CI/CD pipelines. Source: aaronontheweb/dotnet-skills.
How do I install dotnet-local-tools?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/aaronontheweb/dotnet-skills --skill dotnet-local-tools Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/aaronontheweb/dotnet-skills
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-05