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.
Today all of our descriptors: TagHelperDescriptor, TagHelperAttributeDescriptor, TagHelperDesignTimeDescriptor and TagHelperAttributeDesignTimeDescriptor are created via constructors. At first this was fine, however they're getting quite large in terms of property count. Therefore, for maintainability removing constructors from these types and creating them with auto properties would be a more maintainable approach.
This also involves updating all of the TagHelper comparers that use them to account for their new mutability.
Related conversation: #430 (comment)
Today all of our descriptors:
TagHelperDescriptor,TagHelperAttributeDescriptor,TagHelperDesignTimeDescriptorandTagHelperAttributeDesignTimeDescriptorare created via constructors. At first this was fine, however they're getting quite large in terms of property count. Therefore, for maintainability removing constructors from these types and creating them with auto properties would be a more maintainable approach.This also involves updating all of the
TagHelpercomparers that use them to account for their new mutability./cc @Eilon @dougbu