This repository was archived by the owner on Dec 19, 2018. It is now read-only.

Description
This involves ensuring that TagHelpers do not conflict with each other when it comes to HTML attribute names. EX:
class Foo : TagHelper
{
int MyProp { get; set; }
}
[TagName("Foo")]
class Bar : TagHelper
{
string MyProp { get; set; } // Conflict because it expects string and not int.
}