Hi all
I want to update configuration (applicationsettings) in azure function app automatically.
I added all the configuration in local.settings.json { "IsEncrypted": false, "Values": { "AzureAbc": "AzureAbc", "FUNCTIONS_WORKER_RUNTIME": "dotnet", "BaseUrl": "some_value", "relUrl1": "some_value", "relUrl1 "some_value" }
}
but after publishing function app configuration values are not updated in azure function app configuration.
thanks.