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

Validate no conflicting TagHelper attributes #163

@NTaylorMullen

Description

@NTaylorMullen

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.
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions