We currently have an IIS server with 50 ASP.NET applications that are all in the same app pool. Our plan is to upgrade them all to Blazor with .NET 5. When we publish two different Blazor applications on our server, the first application that we open works but we get this error after opening the second one:
ASP.NET Core does not support multiple apps in the same app pool
This error makes sense but to solve it, I've only been able to find this on Google: https://codepattern.net/Blog/post/dot-net-core-specific-production-issues Which just says to create new app pools. It doesn't appear that we can do that for every single one of our 50 applications, it would take up too many resources. Is there anything else we can do?
Some more googling finds this: HTTP Error 500.35 - ANCM Multiple In-Process Applications in same Process ASP.NET Core 3 But this has different wording and I tried the solution they gave and it didn't work.
I also tried looking through the solution's applicationhost.config
but I don't really know where to start with that.