You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
@addTagHelper *, Location will work in any location, and @addTagHelper "*, Location" will work in an _ImportView.cshtml, but if you try to do @addTagHelper "*, Location" in for example Index.cshtml you'll get an error saying "The given assembly name or codebase was invalid"
To reproduce, create a new Web project, copy the @addTagHelper directive out of _ViewImports.cshtml into Index.cshtml and change it to @addTagHelper "*, Microsoft.AspNetCore.Mvc.TagHelpers".
The text was updated successfully, but these errors were encountered:
@addTagHelper *, Location
will work in any location, and@addTagHelper "*, Location"
will work in an _ImportView.cshtml, but if you try to do@addTagHelper "*, Location"
in for example Index.cshtml you'll get an error saying "The given assembly name or codebase was invalid"To reproduce, create a new Web project, copy the
@addTagHelper
directive out of _ViewImports.cshtml into Index.cshtml and change it to@addTagHelper "*, Microsoft.AspNetCore.Mvc.TagHelpers"
.The text was updated successfully, but these errors were encountered: