configureAppConfiguration method

  1. @override
HostBuilder configureAppConfiguration(
  1. ConfigureAppConfigurationDelegate configureDelegate
)
override

Sets up the configuration for the remainder of the build process and application. This can be called multiple times and the results will be additive. The results will be available at Configuration for subsequent operations, as well as in services.

Implementation

@override
HostBuilder configureAppConfiguration(
    ConfigureAppConfigurationDelegate configureDelegate) {
  _configureAppConfigActions.add(configureDelegate);
  return this;
}