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
ExtendedHelpText="Starting without a path to a CSX file or a command, starts the REPL (interactive) mode."
61
62
};
62
63
@@ -83,7 +84,7 @@ private static int Wain(string[] args)
83
84
varcode=c.Argument("code","Code to execute.");
84
85
varcwd=c.Option("-cwd |--workingdirectory <currentworkingdirectory>","Working directory for the code compiler. Defaults to current directory.",CommandOptionType.SingleValue);
85
86
c.HelpOption(helpOptionTemplate);
86
-
c.OnExecute(async()=>
87
+
c.OnExecuteAsync(async(cancellationToken)=>
87
88
{
88
89
varsource=code.Value;
89
90
if(string.IsNullOrWhiteSpace(source))
@@ -198,7 +199,7 @@ private static int Wain(string[] args)
198
199
vardllPath=c.Argument("dll","Path to DLL based script");
0 commit comments