I'm using deployment slots in an Azure App Service and overriding several web.config values by using Application Settings in each slot.
I have a setting for Raygun, an error tracking service that is in a special section of the web.config. The Raygun key is stored in a <RaygunSettings>
section.
The Azure section for Application settings corresponds to key-value pairs in the <appSettings>
section.
Connection strings correspond to named connection strings in the <connectionStrings>
section.
Here is a screen shot of a web.config file that illustrates the issue I'm trying to resolve:
How can I override the RaygunSettings section in the Azure App Service Application Settings?