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
Copy file name to clipboardExpand all lines: src/CodeUpdater/CodeUpdater/Options/CommandOptions.cs
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,4 +13,10 @@ public class CommandOptions
13
13
{
14
14
[Option(shortName:'c',longName:"config-file",Required=true,HelpText="Path to the file to use for config values when updating code")]
15
15
publicrequiredstringConfigFile{get;set;}
16
+
17
+
[Option(shortName:'o',longName:"output-file",Required=false,HelpText="If this is set, it will be the file to write logs to.")]
18
+
publicstring?OutputFile{get;set;}
19
+
20
+
[Option(shortName:'l',longName:"log-level",Required=false,HelpText="Level to log. Valid values are: Verbose, Info, Warn, Error. Default value is verbose.")]
0 commit comments