In my Azure application service, I want to update application settings, but after publishing from VS, the keys do not override the values from the local Web.config
In Azure, it looks like this:

As a result, my web.config on azure contains values from local settings
<connectionStrings>
<add name="MainConnectionString" connectionString="ConnectionStringToReplaceByAzure" providerName="System.Data.SqlClient" />
</connectionStrings>
<appSettings>
<add key="MS_SigningKey" value="Overridden by portal settings" />
</appSettings>
source
share