NuGet Package manager stuck on "Retrieving information..." on VS 2013
nuget-package, visual-studio-2013
Solution
I'm using VS 2013 and all of suggested solutions has failed. I solved the problem by applying the following method :
- Open package manager console in Visual Studio
- Type: `[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bOR [Net.SecurityProtocolType]::Tls12`
This will change the connection security protocol to nuget as specified in this article: Deprecating TLS 1.0 and 1.1 on NuGet.org
Problem
Using VS 2013 with NuGet Package Manager installed, I can view all Installed packages, but when I pick Updates or Online, I get an endless busy indicator showing "Retrieving information..." I've verified I have a good connection. I uninstalled/reinstalled NuGet Package Manager. Any other suggestions? Thanks