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
{{ message }}
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
When providing values for non-string tag helper properties, Razor authors lose IntelliSense and other C# support when the expression contains transitions. A simple example would be <element non-string="@object + value" />.
Using existing MVC tag helpers in a contrived way, the following illustrates the issue. Note only @ValidationSummary.All is highlighted in the second case. Even the attribute name gets the wrong classification.
Problem is likely related to fact not all Span components of the more-complex expression get SpanKind.Code. In particular TagHelperBlockRewriter.CreateMarkupAttribute() isn't called on every code path through TagHelperBlockRewriter.TryParseBlock().