Open
Description
Hi,
I am using Visual Studio Professional 2022 Version 17.12.4
I have the below tag helper class:
[HtmlTargetElement("test", Attributes = "test", ParentTag = "div")]
public class TestTagHelper : TagHelper
{
[HtmlAttributeName("test")]
public bool MyProperty { get; set; }
}
The razor page syntax:
<div>
<test></test>
</div>
IntelliSense does not pop up the test attribute.
Removing the parent tag solves the issue
The same issue reproduces in the VS Code with the C# Dev Kit extension
Activity