I am running an ASP.NET Web API application for .NET Framework 4.7.2, and when I try to run it in on my Windows 11 dev machine via IIS Express, the app is crashing with the following error:
HTTP Error 502.5 - ANCM Out-Of-Process Startup Failure
Common solutions to this issue:
The application process failed to start
The application process started but then stopped
The application process started but failed to listen on the configured port
Now AFAIK the ANCM module is only used for running ASP.NET Core apps on IIS, so why is it causing issues with a .NET Framework app? Are there any switches I can set in e.g. my .csproj
file to ensure it doesn't try to load ANCM?