MVC 6 Tag Helpers Intellisense?

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

    You need to also have

    "Microsoft.AspNetCore.Mvc": "1.0.1",
    "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
    "Microsoft.AspNetCore.Razor.Tools": {
      "version": "1.0.0-preview2-final",
      "type": "build"
    },
    

    in your project.json dependencies, you can see all of the steps here: https://stackoverflow.com/a/40147096/550975

提交回复
热议问题