I somehow have two versions of the same NuGet package in one of my projects.
Is there a way to uninstall a specific version of that package?
I've tried Uninstall-Package [name]
and then Install-Package [name]
, although this seems to keep both versions.
This is causing issues in my code where references to classes in that package are being treated as ambiguous, and cause build errors.