Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,229 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
https://stackoverflow.com/questions/78919971/use-dependency-injection-in-azure-logic-app-custom-code
only Logger is registered and ready to use.
This does not work for custom code with logic app
var host = new HostBuilder()
.ConfigureFunctionsWorkerDefaults()
.ConfigureServices((hostContext, services) =>
{
services.AddLogging();
services.AddScoped<ISomeService, SomeService>();
}).Build();
await host.RunAsync();