.Net Core 2.2 application cannot find appsettings path when using "InProcess" hosting model on one of my systems, it only works when hosting model is changed to "OutOfProcess", is there a reason why the same application requires different configuration for different machines
I'm creating a new micro service and my application runs fine in PROD/QA/DEV servers with hosting model configured as "InProcess". when running in Debug mode its breaking because it couldn't find the appsettings path. I tried through second machine it works fine through second machine with hosting model as "InProcess". I'm I missing any configuration? which is making it work differently on different systems?!
App is using a Nuget for logging, when called that Nuget it reads the "RollingFile" path from the calling applicaton. Here the problem is on some of the machines it couldn't find the appsettings path while using "InProcess" hosting!!