ZeroInstall.Program.RunCli C# (CSharp) Method

RunCli() private static method

Runs the application in command-line mode.
private static RunCli ( string args ) : ExitCode
args string The command-line arguments passed to the application.
return ExitCode
        private static ExitCode RunCli(string[] args)
        {
            using (var handler = new CliTaskHandler())
                return Run(args, handler, gui: false);
        }