I have a .NET 8 application deployed to the Azure app service as a Virtual application along with another application in the root folder.
I was able to overwrite the application settings for the root application but not to the virtual application.
I was not able to find any documentation related to this.
I am able to override the application settings of both Root and Virtual App.
Virtual Path:
Environment Variables:
.cshtml
file.Root Application:
@inject IConfiguration myconfig;
<h3>@myconfig["ParentSetting"]</h3>
Child App:
@inject IConfiguration myconfig;
<h3>@myconfig["ChildSetting"]</h3>
<h3>@myconfig["ParentSetting"]</h3>
I was not able to find any documentation related to this.
There is no such documentation related to override Virtual App Settings.