Home > Mobile >  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?

Time:06-16

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?

CodePudding user response:

.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.
  • Related