We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cc5f01 commit ce2c328Copy full SHA for ce2c328
Program.cs
@@ -70,8 +70,19 @@ static class SwitchNames
70
/// </summary>
71
enum ExitCode : int
72
{
73
+ /// <summary>
74
+ /// Application executed successfully.
75
+ /// </summary>
76
Success = 0,
77
+
78
79
+ /// Application encountered an error during execution.
80
81
Error = 1,
82
83
84
+ /// Application encountered violations during analysis.
85
86
ViolationsFound = 2
87
}
88
0 commit comments