Latest function app creation (.net 8/9 isolated) shift from HostBuilder to FunctionsApplicationBuilder, which doesn't have a method to access the internal HostBuilder nor does it provide a ConfigureFunctionsWebApplication method that allows the addition of middleware to the HostBuilder.
var builder = FunctionsApplication.CreateBuilder(args);
builder.ConfigureFunctionsWebApplication();
Does Dark Loop support this latest shift?