I am trying to host ASP.NET Core 2.2 we app using in process model as a sub app of ASP.NET web application.
while i am trying to access the sub app i am getting following error.
HTTP Error 500.0 - ANCM In-Process Handler Load Failure
Common causes of this issue:
The specified version of Microsoft.NetCore.App or Microsoft.AspNetCore.App was not found.
The in process request handler, Microsoft.AspNetCore.Server.IIS, was not referenced in the application.
ANCM could not find dotnet.
Troubleshooting steps:
Check the system event log for error messages
Enable logging the application process' stdout messages
Attach a debugger to the application process and inspect
However apps runs fine when hosted as a stand alone application on IIS.
Any One have any idea how to host asp.net core application as sub application of ASP.NET WEB application.