David Mays
David Mays

Reputation: 626

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?

Upvotes: 4

Views: 3520

Answers (1)

Guru Stron
Guru Stron

Reputation: 142173

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

Upvotes: 4

Related Questions