What problem does it solve? Testing .NET preview releases or pinning specific SDK versions normally risks breaking the system-wide installation. This Skill installs a .NET SDK into a project-local .dotnet/ directory and wires it up through the global.json paths feature (.NET 10+), so the isolated SDK is picked up automatically without touching the global install. ## Core Features & Use Cases - Isolated SDK Installation: Downloads and installs any .NET SDK channel, quality, or exact version into .dotnet/ using Microsoft's official dotnet-install scripts on macOS, Linux, and Windows. - global.json Configuration: Creates or safely merges global.json with paths, rollForward, allowPrerelease, and errorMessage settings, backing up existing files and preserving unrelated properties. - Workload & Team Script Support: Installs workloads like MAUI using the local dotnet binary and generates reproducible install-dotnet.sh / install-dotnet.ps1 scripts for team and CI setups. - Use Case: You want to try the latest .NET 11 preview with MAUI workloads on a project without affecting your stable system SDK. The Skill installs the preview locally, configures global.json, gitignores .dotnet/, and commits team install scripts so colleagues reproduce the same setup. ## Quick Start Ask the assistant to install the latest .NET 11 preview SDK locally for this project and configure global.json to use it.