Exemplo n.º 1
0
        /// <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();
        }
Exemplo n.º 2
0
 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.