I need to get the IConfiguration in .Net 5 isolated process Azure functions to ConfigureServices using DI. How can I do this?
var host = new HostBuilder()
.ConfigureFunctionsWorkerDefaults()
.ConfigureServices(s => {
// Get IConfiguration
// Configure services based on config settings
})
.Build();