Marcus Fehde

Results 2 comments of Marcus Fehde

I ran into the same issue and spent quite a lot time on figuring out that the configuration mechanism is not working as the API suggested (to me at least)....

I just found a solution (workaround?): ``` ConfigureAppConfiguration((context, builder) => { string enviroment = context.HostingEnvironment.EnvironmentName.ToLower(); string filename = enviroment is {Length: > 0} ? $"appsettings.{enviroment}.json" : "appsettings.json"; string basePath =...