configureHostConfiguration method

  1. @override
HostBuilder configureHostConfiguration(
  1. ConfigureHostConfigurationDelegate configureDelegate
)
override

Set up the configuration for the builder itself. This will be used to initialize the HostEnvironment for use later in the build process. This can be called multiple times and the results will be additive.

Implementation

@override
HostBuilder configureHostConfiguration(
    ConfigureHostConfigurationDelegate configureDelegate) {
  _configureHostConfigActions.add(configureDelegate);
  return this;
}