Recently, I wrote the nuget server assembler internetworking.
Of course, the implementation is so stupid, ugly, etc .... link
You can configure it in Startup.cs
public void ConfigureServices( IServiceCollection services ) { ... services.AddNugetServer(opt=> { opt.ApiKey = "This is a string used for adds or deletes your package(s)"; opt.PackageDirectory = "/path/to/your/packages";
And visit http (s): // your-server-address [: port] /v3/index.json
Publisher:
dotnet nuget push -s http(s):
source share