I have a scenario where I need to perform XML Transformation for Web.config & ConnectionStrings.config files of my .Net MVC project. My requirement is to perform this from my Azure CICD pipeline.
I am using Azure web apps to host my web application. I cannot use the Azure Web App Deploy task, as am deploying the files using FTP upload.
I am looking for a solution where I can transform these configs directly on the web apps from the release pipeline.
In my case, we are setting up a sitecore platform and the infrastructure is provisioned based on an ARM template. After provisioning, a base web app gets created with all the connectionStrings and web configs prepopulated. And What i am trying is to transform these pre-populated config files at the time of release.
Thanks in Advance.