I am building a Web API in .NET core 1.1. Since .NET core doesn't support web.config, I have moved all the configuration to appSettings.json.
On production web server we have other ASP.NET applications (with target framework 4.5.1) running that uses connection string from machine.config. I fear that the IT team would not permit me to have connection string in appSettings.json because they would now have to maintain it at multiple places.
Is it possible to read connection string from machine.config in .NET core?