Skip to content

Commit 758c38f

Browse files
committed
removed short params
1 parent 24062a1 commit 758c38f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/CodeCoverageSummary/CommandLineOptions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ public class CommandLineOptions
77
[Value(index: 0, Required = true, HelpText = "Code coverage file to analyse.")]
88
public string Filename { get; set; }
99

10-
[Option(shortName: 'b', longName: "badge", Required = false, HelpText = "Include a badge in the output - true / false.", Default = false)]
10+
[Option(longName: "badge", Required = false, HelpText = "Include a badge reporting the Line Rate coverage in the output using shields.io - true or false.", Default = false)]
1111
public bool Badge { get; set; }
1212

13-
[Option(shortName: 'f', longName: "format", Required = false, HelpText = "Output Format - markdown or text.", Default = "text")]
13+
[Option(longName: "format", Required = false, HelpText = "Output Format - markdown or text.", Default = "text")]
1414
public string Format { get; set; }
1515

16-
[Option(shortName: 'o', longName: "output", Required = false, HelpText = "Output Type - console, file or both.", Default = "console")]
16+
[Option(longName: "output", Required = false, HelpText = "Output Type - console, file or both.", Default = "console")]
1717
public string Output { get; set; }
1818
}
1919
}

0 commit comments

Comments
 (0)