Introduction In .net framework, appsettings and configuration were much easier. There was a global configuration file(web/app.config) and, within it, there was a section named appsettings that could receive flat key-value pairs of string data. It was not perhaps the most optimised way as application has to be restarted even after simple change in the configuration file. …