Home > other >  No response when clicking on "Manage Nuget Packages for Solution" in Visual Studio
No response when clicking on "Manage Nuget Packages for Solution" in Visual Studio

Time:08-03

Need to use MathNet.Numerics and so needed to install the relevant Nuget package. Did not install as I was on .NET Framework 4.5 and needed 4.6.1 or higher. Updated my project to 4.7.2. Now when I try to install I get no reaction when I click on "Manage Nuget Packages for Solution" in Visual Studio.

I tried a repair install which did not work and then deleted the ComponentModelCache folder based on another StackOverflow thread. No luck and the .NET Framework version is now 4.8 after repair install and update.

(I"m using Visual Studio Community 2019 v 16.11.17)

Any advice will be much appreciated.

Thanks.

CodePudding user response:

One of these should resolve your issue :]

  1. open the visual studio installer and update visual studio if any updates are available

  2. disconnect and reconnect your wifi

  3. open the package manager console and type in Install-Package MathNet.Numerics -Version 5.0.0

do any of these work?

  • Related