NuGet
mise-server proxies the NuGet package registry for .NET packages.
Endpoints
GET /nuget/{id}/{version}/{file}.nupkg # package download
GET /nuget/{id}/index.json # package versionsClient Configuration
bash
dotnet nuget add source http://your-server:3000/nuget/ --name mise-serverOr in NuGet.Config:
xml
<configuration>
<packageSources>
<add key="mise-server" value="http://your-server:3000/nuget/" />
</packageSources>
</configuration>Upstream Override
toml
[settings.piers.nuget]
upstream = "https://api.nuget.org/v3-flatcontainer"