I'm using Visual Studio 2015 Community edition, and I've created an ASP.NET MVC 5 project.
When I open a view (Index
of Home
or any other), it shows first three lines of the page underlined with red as a syntax issue. Here is the error:
Encountered an unexpected error when attempting to resolve tag helper directive '@addTagHelper' with value 'Microsoft.AspNet.Mvc.Razor.TagHelpers.UrlResolutionTagHelper, Microsoft.AspNet.Mvc.Razor'. Error: Object reference not set to an instance of an object
The screenshot:
When I build the project, it build successfully. When I run it, it shows a lot of errors, but it runs the application.
The type or namespace name 'Mvc' does not exist in the namespace 'Microsoft.AspNet' (are you missing an assembly reference?)
and
'_Page_views_home_index_cshtml.ExecuteAsync()': no suitable method found to override
How can I get rid of this?