Ejemplo n.º 1
0
 public static Bootstrapper ConfigureEngine(this Bootstrapper bootstrapper, Action <IEngine> action) =>
 bootstrapper.Configure <IEngine>(x => action(x));
Ejemplo n.º 2
0
 public static Bootstrapper ConfigureServices(this Bootstrapper bootstrapper, Action <IServiceCollection, IConfigurationRoot> action) =>
 bootstrapper.Configure <ConfigurableServices>(x => action(x.Services, x.Configuration));
Ejemplo n.º 3
0
 public static Bootstrapper ConfigureSettings(this Bootstrapper bootstrapper, Action <IConfigurationSettings> action) =>
 bootstrapper.Configure <ConfigurableSettings>(x => action(x.Settings));
Ejemplo n.º 4
0
 public static Bootstrapper BuildConfiguration(this Bootstrapper bootstrapper, Action <IConfigurationBuilder> action) =>
 bootstrapper.Configure <ConfigurableConfiguration>(x => action(x.Builder));
Ejemplo n.º 5
0
 public static Bootstrapper ConfigureCommands(this Bootstrapper bootstrapper, Action <IConfigurator> action) =>
 bootstrapper.Configure <ConfigurableCommands>(x => action(x.Configurator));