We are trying to create azure function app using .NET pre-compiled libraries (without .NET core) and all application configurations we have added in appsettings.json file that is working fine locally. We are able to get the key's value using below code
ConfigurationManager.AppSettings["keyName"]
But, after deployment using VS2017 we are not able to get the key's value from appsetting.json file unless we have to create configurations in Azure Application-setting blade manually.
We also tried to add configuration in Web.config but it didn't work and Azure-Functions: Can you use web.config restrictions (e.g. IP restriction or basic Auth) suggested that web.config is not supported to Azure Function app.
What is the best way to store application settings for Azure function app except Azure Application-setting blade?.

