Installing Razor Component Tag Helpers is very easy. All you need to do is download the nuget package:
dotnet add package TechGems.RazorComponentTagHelpers --version 1.1.0
or alternatively you can even just copy and paste the necessary base class file located here into your project and use it the same way it is explained in Basic Usage.
As with all tag helpers, you will need to go to the _ViewImports.cshtml
file and add a reference to your project’s namespace like so:
@addTagHelper *, Sample.Web
@addTagHelper *, TechGems.RazorComponentTagHelpers
This applies to any custom tag helper, but without this step, none of your tag helpers will be compiled as such.