You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Visual Studio Enterprise 2022 (x64) Version 17.7.5.
I have the below tag helper classes:
/// <summary>
/// This is a container
/// </summary>
[HtmlTargetElement("container")]
public class ContainerTagHelper : TagHelper
{
public override void Process(TagHelperContext context, TagHelperOutput output)
{
}
}
/// <summary>
/// This is a header
/// </summary>
[HtmlTargetElement("header", ParentTag = "container")]
public class ContainerHeaderTagHelper : TagHelper
{
/// <summary>
/// This is a test property
/// </summary>
public string Attribute { get; set; }
public override void Process(TagHelperContext context, TagHelperOutput output)
{
}
}
Summary for Attribute property does not show when hovering the mouse over the attribute='test' in razor syntax.
Removing the ParentTag solves the issue.
The text was updated successfully, but these errors were encountered:
Fixes#9397
The parent calculation for attributes was wrong, but without tag helper
rules, the calculation had no effect, so the bug didn't show up
anywhere.
ghost
locked as resolved and limited conversation to collaborators
Nov 11, 2023
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I am using Visual Studio Enterprise 2022 (x64) Version 17.7.5.
I have the below tag helper classes:
The razor page syntax:
Summary for Attribute property does not show when hovering the mouse over the
attribute='test'
in razor syntax.Removing the ParentTag solves the issue.
The text was updated successfully, but these errors were encountered: