I have a version of a package installed in my project but during testing I have found a problem with it. I tried the obvious thing Update-Package -Id Foo.Bar -Version 1.0.0 -Force
but the Update-Package cmdlet doesn't have a -Force parameter, and it doesn't allow updates to an earlier version. How do I downgrade my package dependencies (without taking advantage of source control!)
NOTE: This question is now irrelevant because Update-Package MyPackage -Version [an earlier version]
works out of the box in recent versions of NuGet Package Manager. You don't even need a -Force
switch.