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
Console.WriteLine($"An error has been encountered: {ex}");
195
184
}
@@ -204,27 +193,27 @@ class Options
204
193
{
205
194
// Inputs
206
195
[Option('i',"input",Required=true,HelpText="The filename or directory of the (input) Json file(s) containing the automation metadata.")]
207
-
publicstringInput{get;set;}
196
+
publicstringinput{get;set;}
208
197
209
198
[Option('p',"pattern",Required=true,HelpText="The filename for the (input) Handlebars pattern.")]
210
-
publicstringPattern{get;set;}
199
+
publicstringpattern{get;set;}
211
200
212
201
// Outputs
213
202
[Option('o',"output",Required=false,HelpText="Enable output to be spooled to disk (enable/disable) - default is disable.")]
214
-
publicboolOutput{get;set;}
203
+
publicbooloutput{get;set;}
215
204
216
205
[Option('d',"outputdirectory",Required=false,HelpText="The directory where spool files (output) are placed. If not provided, the execution directory will be assumed.")]
217
-
publicstringOutputDirectory{get;set;}
206
+
publicstringoutputDirectory{get;set;}
218
207
219
208
[Option('e',"outputextension",Required=false,HelpText="The extension used for the output file(s). This is defaulted to txt when left empty.")]
220
-
publicstringOutputFileExtension{get;set;}
209
+
publicstringoutputFileExtension{get;set;}
221
210
222
211
[Option('f',"outputfilename",Required=false,HelpText="The name of the output file(s). This is defaulted to the mapping name in the metadata object when left empty.")]
223
-
publicstringOutputFileName{get;set;}
212
+
publicstringoutputFileName{get;set;}
224
213
225
214
// Other
226
215
[Option('v',"verbose",Required=false,HelpText="Set output to verbose messages.")]
/// The parent object containing the list of source-to-target mappings. This is the highest level and contains the list of mappings (as individual objects
12
+
/// but also the parameters inherited from TEAM and VDW.
0 commit comments