@@ -161,7 +161,7 @@ public enum AnalysisFormat
161
161
PsBridge
162
162
}
163
163
164
- [ Option ( "analysis-format" , HelpText = "The format of the analysis output.\n Accepted options:\n " +
164
+ [ Option ( "analysis-format" , HelpText = "The format of the analysis output.\n Accepted options:\n " +
165
165
"'ability' for Ability and Minimax Tags\n " +
166
166
"'psbridge' for PS Bridge analysis" ) ]
167
167
public AnalysisFormat DdsAnalysisFormat { get ; set ; } = AnalysisFormat . Ability ;
@@ -174,14 +174,14 @@ public enum AnalysisFormat
174
174
_ => throw new ArgumentOutOfRangeException ( )
175
175
} ;
176
176
177
- [ Option ( 'r' , "-- renumber" , HelpText = "Renumber boards, use +/-x to shift numbers, x to assign new numbers" ) ]
177
+ [ Option ( 'r' , "renumber" , HelpText = "Renumber boards, use +/-x to shift numbers, x to assign new numbers" ) ]
178
178
public string ? Renumber { get ; set ; }
179
179
180
- [ Option ( 'd' , "-- delete-boards" , Separator = Separator , HelpText = "Delete boards, accepts numbers or number ranges" ) ]
180
+ [ Option ( 'd' , "delete-boards" , Separator = Separator , HelpText = "Delete boards, accepts numbers or number ranges" ) ]
181
181
public IEnumerable < string > ? DeleteBoards { get ; set ; }
182
182
183
183
[ Value ( 1 , MetaName = "output-file" ,
184
- HelpText = "Output file name, if not specified, the program will use the input file name " ) ]
184
+ HelpText = "Output file name, if not specified, the program will use standard output " ) ]
185
185
public string ? Output { get ; set ; }
186
186
187
187
[ Option ( 'w' , "overwrite" , HelpText = "Overwrite the input file with output" ) ]
0 commit comments