@@ -6,35 +6,35 @@ internal static class DiagnosticDescriptors
66{
77 public static DiagnosticDescriptor InvalidStringEqualityAttributeUsage => new (
88 id : "EQ0010" ,
9- title : "Invalid String Equality Attribute Usage" ,
10- messageFormat : "Invalid String equality attribute usage for property {0}. Property return type is not a string" ,
9+ title : "Invalid StringEquality Attribute Usage" ,
10+ messageFormat : "Invalid StringEquality attribute usage for property {0}. Property type is not a string" ,
1111 category : "Usage" ,
1212 defaultSeverity : DiagnosticSeverity . Warning ,
1313 isEnabledByDefault : true
1414 ) ;
1515
1616 public static DiagnosticDescriptor InvalidDictionaryEqualityAttributeUsage => new (
1717 id : "EQ0011" ,
18- title : "Invalid Dictionary Equality Attribute Usage" ,
19- messageFormat : "Invalid Dictionary equality attribute usage for property {0}. Property return type does not implement IDictionary<TKey, TValue>" ,
18+ title : "Invalid DictionaryEquality Attribute Usage" ,
19+ messageFormat : "Invalid DictionaryEquality attribute usage for property {0}. Property type does not implement IDictionary<TKey, TValue>" ,
2020 category : "Usage" ,
2121 defaultSeverity : DiagnosticSeverity . Warning ,
2222 isEnabledByDefault : true
2323 ) ;
2424
2525 public static DiagnosticDescriptor InvalidHashSetEqualityAttributeUsage => new (
2626 id : "EQ0012" ,
27- title : "Invalid HashSet Equality Attribute Usage" ,
28- messageFormat : "Invalid HashSet equality attribute usage for property {0}. Property return type does not implement IEnumerable<T>" ,
27+ title : "Invalid HashSetEquality Attribute Usage" ,
28+ messageFormat : "Invalid HashSetEquality attribute usage for property {0}. Property type does not implement IEnumerable<T>" ,
2929 category : "Usage" ,
3030 defaultSeverity : DiagnosticSeverity . Warning ,
3131 isEnabledByDefault : true
3232 ) ;
3333
3434 public static DiagnosticDescriptor InvalidSequenceEqualityAttributeUsage => new (
3535 id : "EQ0013" ,
36- title : "Invalid Sequence Equality Attribute Usage" ,
37- messageFormat : "Invalid Sequence equality attribute usage for property {0}. Property return type does not implement IEnumerable<T>" ,
36+ title : "Invalid SequenceEquality Attribute Usage" ,
37+ messageFormat : "Invalid SequenceEquality attribute usage for property {0}. Property type does not implement IEnumerable<T>" ,
3838 category : "Usage" ,
3939 defaultSeverity : DiagnosticSeverity . Warning ,
4040 isEnabledByDefault : true
0 commit comments