Reputation: 180
I just got back to an old project of mine and I noticed I had some nuget packages I have to restore, which I've had in the past but than I could go to the console and it would ask me if I wanted to restore my packages.
And the times I haven't gotten that prompt I could always run this command Update-Package –reinstall
How ever none of this solves my problem, the packages I am missign are:
EntityFramework
System.Web.Helpers
System.Web.Mvc
System.Web.WebPages
Upvotes: 1
Views: 463
Reputation: 630
You have to enable Nuget Package Restore for your project. If that is not working then locate .nuget folder. In windows command line change the directory to .nuget folder of your project and then run
nuget restore Solution.sln
You have to specify the full path of your .sln file.
Upvotes: 2