As per Microsoft we have to use the below line to add Tag Helpers.
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
Here, they have used * as a wild card. This means it imports all tag helpers from the Microsoft.AspNetCore.Mvc.TagHelpers assembly. Correct me if I am wrong.
I don't want to use *. I only want to use asp-append-version for my Image.
What should I write instead of *?
@addTagHelper AuthoringTagHelpers.TagHelpers.EmailTagHelper, AuthoringTagHelpers- specify the fully qualified class name of the tag helper, plus its namespace, to reference only a single tag helper explicitly