I guess everyone is familiar with the ASP.NET Core taghelpers like form
where you can use the attributes like asp-area
to get intellisense for the areas, controllers or actions. I would like the same autocomplete (and therefore refactor) functionality for custom view components.
I checked out the code of the form tag helper but there seams to be nothing that refers to intellisense. So is this even possible or is this handled inside intellisense and there is nothing I can do to make intellisense “see” my intention?
So what I want is the same highlighting and logik in my vc:table
as in the ASP.NET Core form
taghelper.