I'm working on a backend that uses both ASP.NET Core Minimal API and Azure Functions (TimerTrigger and HttpTrigger). I want to run both locally for development and testing.
However, I'm running into port conflicts and unclear routing behavior.
Is it possible to combine both in the same .NET Core project? If so, how do I configure launchSettings.json or Program.cs to handle both correctly without conflict?
Any best practices for combining these in a single code base?