static void Main(string[] args) { try { options = new LaunchOptions(args); } catch (OptionException e) { Console.WriteLine(e.Message); Console.WriteLine("Try `meep --help' for more information."); return; } if (Environment.UserInteractive) { InteractiveMain(options); } else { CreateHostBuilder(args).Build().Run(); } }
public PipelineService(Bootstrapper bootstrapper, LaunchOptions options) { this.Bootstrapper = bootstrapper; this.Options = options; this.Bootstrapper.PipelineRefreshed += Bootstrapper_PipelineRefreshed; }