Since installing last Windows Updates packages for Windows 7, I've lost intellisense in my (existing and new ones) ASP.NET MVC projects and got some Visual Studio 2012 Professional errors when opening *.cshtml files like:
'System.Web.WebPages.Html.HtmlHelper' does not contain a definition for 'ActionLink' and no extension method 'ActionLink' accepting a first argument of type 'System.Web.WebPages.Html.HtmlHelper' could be found (are you missing a using directive or an
assembly reference?) c:\Users\Adam\Documents\Visual Studio 2012\Projects\MvcTest\MvcTest\Views\Shared\_Layout.cshtml 15 49 MvcTest
I followed guideline available at webdev blog and upgraded projects via nuget to 4.0.40804.
http://blogs.msdn.com/b/webdev/archive/2014/10/16/microsoft-asp-net-mvc-security-update-broke-my-build.aspx and upgraded
'Copy local' flag doesn't resolve the issue. I tried many solutions from StackOverflow, but still got errors.
What can I do to resolve the issue?
Regards.