/// <summary> /// Main method. /// </summary> /// <param name="args"></param> public static void Main(String[] args) { //System.Diagnostics.Debugger.Launch(); CoreBuilderHost host = new CoreBuilderHost(args[0], args[1]); host.Start(); }
public static void Main(String[] args) { Console.WriteLine("Starting CoreBuildServer"); if (args.Length == 4) { // Provide host address and port. CoreBuilderHost host = new CoreBuilderHost("http://localhost", "8200"); // Provide mother build address and port. host.ConfigureServer(args[2], args[3]); // Start to start handling build requests. host.Start(); } } // Gracefully exiting the remote build server.