Skip to content

Commit

Permalink
fix(tools): argument formatting in MSpecTasks (#1192)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankStrieter authored and matkoch committed Aug 14, 2023
1 parent d844930 commit 35b3b87
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/Nuke.Common/Tools/MSpec/MSpec.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,34 +23,34 @@
{
"name": "Filters",
"type": "List<string>",
"format": "-f={value}",
"format": "-filters {value}",
"separator": ",",
"help": "Filter file specifying contexts to execute (full type name, one per line). Takes precedence over tags."
},
{
"name": "Includes",
"type": "List<string>",
"format": "-i={value}",
"format": "-include {value}",
"separator": ",",
"help": "Executes all specifications in contexts with these comma delimited tags. Ex. <c>-i 'foo, bar, foo_bar'</c>."
},
{
"name": "Excludes",
"type": "List<string>",
"format": "-x={value}",
"format": "-exclude {value}",
"separator": ",",
"help": "Exclude specifications in contexts with these comma delimited tags. Ex. <c>-x 'foo, bar, foo_bar'</c>."
},
{
"name": "HtmlOutput",
"type": "string",
"format": "--html={value}",
"format": "--html {value}",
"help": "Outputs the HTML report to path, one-per-assembly w/ index.html (if directory, otherwise all are in one file). Ex. <c>--html=output/reports/</c>"
},
{
"name": "XmlOutput",
"type": "string",
"format": "--xml={value}",
"format": "--xml {value}",
"help": "Outputs the XML report to the file referenced by the path. Ex. <c>--xml=output/reports/MSpecResults.xml</c>"
},
{
Expand Down

0 comments on commit 35b3b87

Please sign in to comment.