NuGet Bundler

Enter a NuGet package name and download a zip containing all .nupkg files — ready for offline dotnet restore on air-gapped machines.

Click a package to pre-fill the form

Bundle contents

ximg-nuget-bundle-<pkg>-<ver>-<framework>/
  packages/              ← flat directory of .nupkg files
  nuget.config           ← points to ./packages as offline source
  install.ps1            ← Windows PowerShell installer
  install.sh             ← Linux / macOS installer
  README.txt

Windows (PowerShell)

cd ximg-nuget-bundle-<pkg>-...
.\install.ps1

Linux / macOS (bash)

cd ximg-nuget-bundle-<pkg>-...
bash install.sh

Use in your own project

# Copy nuget.config to your project root, then:
dotnet restore

# Or restore with an explicit source:
dotnet restore --source /path/to/packages