예제 #1
0
        static void Main(string[] args)
        {
            var options = new Options
            {
                ServerAddress = string.Empty,
                ServerPort = 0
            };

            var agent = new BuildAgent(options);
            agent.RunAgent();
        }
예제 #2
0
        static void Main(string[] args)
        {
            var options = new Options
            {
                ServerAddress = string.Empty,
                ServerPort    = 0
            };

            var agent = new BuildAgent(options);

            agent.RunAgent();
        }
예제 #3
0
 static void LaunchBuildAgent(Options options)
 {
     var agent = new BuildAgent(options);
     agent.RunAgent();
 }