Is there a way to start 2 web app projects simultaneously? Something like this:
public class Program {
public static void Main(string[] args) {
BlazorApp.Program.Main(null);
MyWebApi.Program.Main(null);
// ... maybe start other services...
}
}