Reputation: 12703
Since I while me and everbody in my team get this error message when we try to check for nuget package updates:
An error occurred while processing this request.
This only happens if I check in individual projects. It works if I do it on a solution level.
I updated to nuget 2.7.40808.167
Settings:
nuget.org
https://www.nuget.org/api/v2/
I've already tried to deinstall and install it again. But nothing.
It also happens on my laptop at home (but with the same project).
Upvotes: 3
Views: 1642
Reputation: 26504
I too am having the same issue with Nuget 2.7. As a workaround I am currently utilizing the Package Manager Console. The command Get-Package -updates
will list all available updates for a project:
From there you can use the Update-Package
cmdlet to update specific packages.
Upvotes: 3