Custom tag helper not working

前端 未结 8 1393
抹茶落季
抹茶落季 2021-02-03 19:11

I followed a few guides on creating a custom tag helper for ASP Core.

This is my helper:

using Microsoft.AspNetCore.Mvc.ViewFeatures;
using Microsoft.Asp         


        
8条回答
  •  生来不讨喜
    2021-02-03 19:32

    You need to provide only assembly name in the view imports file.

    _ViewImports.cshtml:

    @addTagHelper *, ToolConstrolSystem
    

提交回复
热议问题