You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -32,6 +34,12 @@ internal class SA1617VoidReturnValueMustNotBeDocumented : DiagnosticAnalyzer
32
34
/// The ID for diagnostics produced by the <see cref="SA1617VoidReturnValueMustNotBeDocumented"/> analyzer.
33
35
/// </summary>
34
36
publicconststringDiagnosticId="SA1617";
37
+
38
+
/// <summary>
39
+
/// The key used for signalling that no codefix should be offered.
40
+
/// </summary>
41
+
internalconststringNoCodeFixKey="NoCodeFix";
42
+
35
43
privateconststringTitle="Void return value must not be documented";
36
44
privateconststringMessageFormat="Void return value must not be documented";
37
45
privateconststringDescription="A C# code element does not contain a return value, or returns void, but the documentation header for the element contains a <returns> tag.";
0 commit comments