-
Notifications
You must be signed in to change notification settings - Fork 223
Resolving TagHelpers from an assembly that only has runtime TagHelpers creates an error at design time. #1145
Comments
- Prior to this if all instances of `TagHelper`s in an assembly had editor browsable never we'd log an error saying that no TagHelpers were found for that assembly. Until we can evaluate a better fix for this issue I've removed the logic that logs those errors and its corresponding tests/resources. #1145
- Prior to this if all instances of `TagHelper`s in an assembly had editor browsable never we'd log an error saying that no TagHelpers were found for that assembly. Until we can evaluate a better fix for this issue I've removed the logic that logs those errors and its corresponding tests/resources. #1145
- Prior to this if all instances of `TagHelper`s in an assembly had editor browsable never we'd log an error saying that no TagHelpers were found for that assembly. Until we can evaluate a better fix for this issue I've removed the logic that logs those errors and its corresponding tests/resources. #1145
I temporarily worked around this issue to unblock tooling folks in this commit. We never used to validate that an assembly had
Looking for opinions @rynowak / @pranavkm / @ajaybhargavb |
Will doing this make it so that we create descriptor only for this error check and the ones with EditorBrowable set to false will be pretty useless otherwise? |
yar |
Close? I like the solution we ended up with. |
If an assembly (
Microsoft.AspNetCore.Mvc.Razor
) only containsTagHelper
s that have editor browsable never then we log an error in our binder syntax tree pass stating that no TagHelpers exist in the assembly.The text was updated successfully, but these errors were encountered: