static void Main(string[] args) { TestUtilities.title("Mother Builder Started ", '='); ChildBuilder cl = new ChildBuilder("http://localhost", 9090); cl.buildProject("..\\..\\..\\Repo_Folder\\TestDemo", "CSTestDemo.csproj"); }
//Test Stub static void Main(string[] args) { if (args.Count() == 0) { Console.Write("\n please enter address and port value on command line"); return; } TestUtilities.title("Child Builder Started on port " + args[1], '='); ChildBuilder ch = new ChildBuilder(args[0], Int32.Parse(args[1])); }