Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.
If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!
Nuget.exe can't delete a .nupkg from proget feed
-
Trying to use nuget.exe to delete a package. The attempt returns success, but the package doesn't really get deleted.
PS C:\Windows\system32> .\nuget.exe delete Package.Service.Log 1.2.205 Username:SecretPassword -Source http://progetserver.mycompany.com:81
-Verbosity detailedPackage.Service.Log 1.2.205 will be deleted from the 'http://progetserver.mycompany.com:81'. Would you like to continue? (y/N) y
WARNING: Deleting Package.Service.Log 1.2.205 from the 'http://progetserver.mycompany.com:81'.
DELETE http://progetserver.mycompany.com:81/api/v2/package/Package.Service.Log/1.2.205
OK http://progetserver.mycompany.com:81/api/v2/package/Package.Service.Log/1.2.205 92ms
Package.Service.Log 1.2.205 was deleted successfully.I've also tried to delete using the API, but there's no method to delete a nuget package. Anyone have success deleting packages without having to go into the web UI?
Product: ProGet
Version: 4.0.13
-
In this case, make sure the web user has permissions to delete from the feed package. otherwise the delete command is supported.
-
In my original example that I used, the web user did have permissions. In fact, the user I used was the admin user. I did both create a special user with delete attributes and test the admin user. Both results were the same. Success was reported, but the package never really was deleted. I'm not using a feed APIKey, I'm only using users that have appropriate rights to do certain things, like delete.