Example #1
0
 internal BuildThread(Runner runner, string name)
 {
     _runner = runner;
     _name = name;
     _thread = new Thread(Execute);
     _thread.Name = "BuildThread" + ++_threadCount;
     _thread.IsBackground = true;
     _thread.Start();
 }
Example #2
0
 private void CreateRunner()
 {
     _options.DisabledTargets = null;
     _runnerThread = Thread.CurrentThread;
     _runner = new GuiRunner(_options);
     _runner.AddLogger(new GuiLogger(this));
     FillProjectOptions();
     FillConfigurations();
 }
Example #3
0
 public Runner(Options options)
 {
     _options = options;
     Current = this;
 }