Reputation: 5941
Somehow, I have no idea how, put the project in very weird state where many dll from MVC are missing. Take a look on image, how can I restore them ? I tried with NuGet
install-package aspnetmvc
but it doesn't help
Upvotes: 0
Views: 693
Reputation: 287
Upgrade You target Framework version Enable NuGet Package Restore.
Go to Package Manager Console and type this
Update-Package
Hit Enter.
After this Rebuild you Project/Solution and all should be good.
Upvotes: 0
Reputation: 136
I'm gonna assume that you changed the target framework before this happened. Remove the references and add them back using NuGet. That will solve this problem
Upvotes: 0
Reputation: 16358
Those are packages.
Open up Package Manager settings by Going to Tools -> Options... (VS2012) then Package Manager -> General and tick both checkboxes.
Enable NuGet Package Restore
Build your solution.
Upvotes: 1