Duplicated Attribute avoided (when using the same attribute twice, but with different tags)
Description
When using the same attribute over the same property twice, but with different tags, one of the instances gets ignored with logging message: "Duplicated Attribute avoided ..."
Example:
public class SomeClass { [Min(1, Tags="Tag1")] [Min(10, Tags="Tag2")] public int SomeInt { get; set; } }
When using the same attribute over the same property twice, but with different tags, one of the instances gets ignored with logging message: "Duplicated Attribute avoided ..."
Example:
public class SomeClass {
[Min(1, Tags="Tag1")]
[Min(10, Tags="Tag2")]
public int SomeInt { get; set; }
}