If the above methods mentioned does not help(like in my case). In the TagHelper
class you may need to decorate it with HtmlTargetElement
like this:
[HtmlTargetElement("div", Attributes="one-of-the-attributes-here")]
public class MyTagHelper : TagHelper
{
...
}
This is how I was able to resolve the issue.