@@ -35,7 +35,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
35
35
defaultSeverity : DiagnosticSeverity . Warning ,
36
36
isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
37
37
description : new LocalizableResourceString ( nameof ( RoslynDiagnosticsResources . DeclarePublicApiDescription ) , RoslynDiagnosticsResources . ResourceManager , typeof ( RoslynDiagnosticsResources ) ) ,
38
- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . DeclarePublicApiRuleId } .md",
38
+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . DeclarePublicApiRuleId } .md",
39
39
customTags : new string [ 0 ] ) ;
40
40
41
41
internal static readonly DiagnosticDescriptor RemoveDeletedApiRule = new DiagnosticDescriptor (
@@ -46,7 +46,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
46
46
defaultSeverity : DiagnosticSeverity . Warning ,
47
47
isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
48
48
description : new LocalizableResourceString ( nameof ( RoslynDiagnosticsResources . RemoveDeletedApiDescription ) , RoslynDiagnosticsResources . ResourceManager , typeof ( RoslynDiagnosticsResources ) ) ,
49
- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . RemoveDeletedApiRuleId } .md",
49
+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . RemoveDeletedApiRuleId } .md",
50
50
customTags : new string [ 0 ] ) ;
51
51
52
52
internal static readonly DiagnosticDescriptor ExposedNoninstantiableType = new DiagnosticDescriptor (
@@ -57,7 +57,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
57
57
defaultSeverity : DiagnosticSeverity . Warning ,
58
58
isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
59
59
description : new LocalizableResourceString ( nameof ( RoslynDiagnosticsResources . ExposedNoninstantiableTypeDescription ) , RoslynDiagnosticsResources . ResourceManager , typeof ( RoslynDiagnosticsResources ) ) ,
60
- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . ExposedNoninstantiableTypeRuleId } .md",
60
+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . ExposedNoninstantiableTypeRuleId } .md",
61
61
customTags : new string [ 0 ] ) ;
62
62
63
63
internal static readonly DiagnosticDescriptor PublicApiFilesInvalid = new DiagnosticDescriptor (
@@ -67,7 +67,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
67
67
category : AnalyzerCategory . ApiDesign ,
68
68
defaultSeverity : DiagnosticSeverity . Warning ,
69
69
isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
70
- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . PublicApiFilesInvalid } .md",
70
+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . PublicApiFilesInvalid } .md",
71
71
customTags : new string [ 0 ] ) ;
72
72
73
73
internal static readonly DiagnosticDescriptor DuplicateSymbolInApiFiles = new DiagnosticDescriptor (
@@ -77,7 +77,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
77
77
category : AnalyzerCategory . ApiDesign ,
78
78
defaultSeverity : DiagnosticSeverity . Warning ,
79
79
isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
80
- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . DuplicatedSymbolInPublicApiFiles } .md",
80
+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . DuplicatedSymbolInPublicApiFiles } .md",
81
81
customTags : new string [ 0 ] ) ;
82
82
83
83
internal static readonly DiagnosticDescriptor AvoidMultipleOverloadsWithOptionalParameters = new DiagnosticDescriptor (
@@ -87,7 +87,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
87
87
category : AnalyzerCategory . ApiDesign ,
88
88
defaultSeverity : DiagnosticSeverity . Warning ,
89
89
isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
90
- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . AvoidMultipleOverloadsWithOptionalParameters } .md",
90
+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . AvoidMultipleOverloadsWithOptionalParameters } .md",
91
91
customTags : new string [ 0 ] ) ;
92
92
93
93
internal static readonly DiagnosticDescriptor OverloadWithOptionalParametersShouldHaveMostParameters = new DiagnosticDescriptor (
@@ -97,7 +97,7 @@ internal sealed partial class DeclarePublicAPIAnalyzer : DiagnosticAnalyzer
97
97
category : AnalyzerCategory . ApiDesign ,
98
98
defaultSeverity : DiagnosticSeverity . Warning ,
99
99
isEnabledByDefault : AnalyzerConstants . EnabledByDefault ,
100
- helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/documentation /{ RoslynDiagnosticIds . OverloadWithOptionalParametersShouldHaveMostParameters } .md",
100
+ helpLinkUri : $ "https://github.com/DotNetAnalyzers/PublicApiAnalyzer/blob/master/docs /{ RoslynDiagnosticIds . OverloadWithOptionalParametersShouldHaveMostParameters } .md",
101
101
customTags : new string [ 0 ] ) ;
102
102
103
103
internal static readonly SymbolDisplayFormat ShortSymbolNameFormat =
0 commit comments