Is there a way to host 2 blazor server apps in one ASP Core project, so that I have one executable/process, which exposes the two different apps on different ports?
I know, that I can restrict routes via .RequireHost("*:8080")
to a specific port, but I can't get my head around, how to do this with two blazor server side rendering apps.
Thanks in advance!