I created a tag helper and wanted to use that in my Blazor sample project. However, when I want to use the tag helper, the compiler complains about that:
CS0103 The name 'StartTagHelperWritingScope' does not exist in the current context FirstBlazorApp
.
What is additionally required to make tag helpers work in Blazor?
Tag helpers are not supported in Blazor. At least not as of now.