static void Main(string[] args) { try { var client = new CommandLineClient(new ProdConsole(), new IoCConfig(), new AppDomainLoader()); client.Run(args); } catch (Exception ex) { Console.WriteLine(ex); } }
public int Run(string[] args) { var client= new CommandLineClient(new ProdConsole(), new IoCConfig(), new AppDomainLoader()); return client.Run(args); }