asp.net-coreiis.net-6.0application-poolasp.net-core-6.0

Does .NET 6 Allow Multiple Apps to run in a Single App Pool?


Does .NET 6 allow multiple apps to run in a single app pool?

.NET Core did not, but I'm not finding anywhere that specifies if .NET 6 allows this?


Solution

  • .NET 6 is current LTS version of .NET Core (link1, link2) and nothing has changed in terms of app pools for in-process hosting of ASP.NET Core in the 6th version:

    • Sharing an app pool among apps isn't supported. Use one app pool per app.