MVC 6 Tag Helpers Intellisense?

后端 未结 6 714
眼角桃花
眼角桃花 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:11

    Make sure you add "Microsoft.AspNet.Tooling.Razor": "1.0.0-rc1-final" to your project.json dependencies.

    You also need to add @addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers" to your _ViewImports.cshtml to make the tag helpers available in al your views.

    You can get more information at aspnet 5 documentation page

提交回复
热议问题