InProcess vs OutOfProcess hosting?
- InProcess hosting runs ASP.NET Core app inside the IIS worker process
(w3wp.exe), better performance.
- OutOfProcess hosting runs the app in a separate process, IIS proxies requests to
it.
- InProcess is default in ASP.NET Core 3.0+ for IIS hosting.