'How to edit appsettings in Azure pipeline?
I'm trying to edit appsettings (.net) in azure pipelines, it's for differents environments(production, development, etc..) For example I want to change this value in appsettings:
"NodeServiceSettings":{
"Api": "http://localhost:4500/"
}
I tried the nexts things:
In pipeline > variables:
In app service configuration:
But nothing worked. Any ideas? Thanks
Solution 1:[1]
There is a section in release pipelines to do exactly this, the section can be found here, but it is strongly recommended to use central Azure App Configuration and not local app settings so you can re use setitngs across applications.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Matt Douhan |