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