'Is there any way to launch multiple Azure functions projects as referenced to an ASP.NET Core external library?
I'm working on a big .NET Core solution in Visual Studio, and I would like to run Azure functions projects in localhost with attaching debugger as they were external referenced DLLs, or "modules".
To be more precise, I started implementing services as Autofac modules, then I implemented my custom modules architecture that works more or less the same but using the default ASP.Net Core IoC container.
In this way, I can load modules just by adding them as dependencies to my main entry point project, and letting those modules load and consume their needed services at runtime.
I'm now working on replacing some background processing modules built with Hangfire.io with Azure Functions, but I can't find a way to load my functions as modules at runtime.
Is this possible? How can I run multiple Azure Functions and debug them at once?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
