Encountered an unexpected error when attempting to resolve tag helper directive '@addTagHelper'

tarzanbappa picture tarzanbappa · Jan 21, 2016 · Viewed 9.1k times · Source

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:

@addTagHelper error message

When I build the project, it build successfully. When I run it, it shows a lot of errors, but it runs the application.

Index View with errors

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?

Answer

Kcoder picture Kcoder · Jan 26, 2016

Here's how I fixed the issue:

First, reset the Visual Studio Component Cache by closing Visual Studio and deleting this folder:

C:\Users\[Username]\AppData\Local\Microsoft\VisualStudio\14.0\ComponentModelCache

And finally, check the web.config files and change:

<appSettings>
    <add key="webpages:Version" value="2.0.0.0" />
    ...
</appSettings>

to

<appSettings>
    <add key="webpages:Version" value="3.0.0.0" />
    ...
</appSettings>