How to remove NuGet Package from server?

Viewed 33526

I have added new package to nuget(I'm not talking about adding reference of package into project). I have added new packages to server so that others can consume/use that package in their projects.

Say package name was Parser1.0.0.0.nupkg

Problem is I forgot to add one dependency. Now I want to edit or delete and add correct one again. But I don't want to change its version number.

Anyone knows how to do it?

6 Answers

Then you got an email from NuGet when you succeed to publish it.

Put an eye on this email because there they wrote:

If this was not intended, please "contact support".

if you click on "contact support", this is linked to your package manage in NuGet and where you can give a reson why you want to delete it and then give the action to delete it.

That's all!

Related