MVC 6 Tag Helpers Intellisense?

后端 未结 6 713
眼角桃花
眼角桃花 2020-12-06 05:53

Is there supposed to be Intellisense for the new asp- tag helpers in Razor/MVC 6? I was following along on one of Shawn Wildermuth\'s courses on Pluralsight and

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-06 06:21

    Another thing, ensure that @addTagHelper in _ViewImports.cshtml is unquoted, for example: @addTagHelper "*, Microsoft.AspNetCore.Mvc.TagHelpers" ----not good

    @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers ---good

    This fixed mine...

    https://github.com/aspnet/Tooling/issues/484

提交回复
热议问题