Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET Core app targeting full framework — InProcess IIS?

I have an ASP.NET Core app targeting full framework 4.6. when I deploy to IIS the application runs out of process. That was the default as ASP.NET Core 2.0 and 2.1, then is said that in ASP.NET Core 2.2 is possible to run InProcess, but Does this apply to ASP.NET Core apps targeting full framework? In Server with IIS, I have installed the latest version of .NET Core 2.2 Runtime & Hosting Bundle for Windows (v2.2.3)

How project was created

like image 577
Carlos E Avatar asked Feb 07 '26 01:02

Carlos E


1 Answers

The docs state that this is not supported when targeting the .NET Framework:

The in-process hosting model isn't supported for ASP.NET Core apps that target the .NET Framework.

like image 158
Kirk Larkin Avatar answered Feb 09 '26 13:02

Kirk Larkin