asp.net - Specify which config transform to use for continuous deployment to Azure web app -
is there way specify config transform should applied when deploying azure web app through continuous integration (i.e. not through publish in visual studio)?
we have continuous integration set github, seems web.release.config transform applied on deployment.
we prefer have custom transform name, e.g. web.azure.config.
is deployment slots used this? , if so, only way it?
thanks!
ps. question belong on serverfault? think it's more related programming? ds.
the environment name can set specific azure web app adding application setting, in azure portal, called scm_build_args value of -p:environment myazuresite
this set environment name, resulting in config transform named web.myazuresite.config applied during build.
more information here
Comments
Post a Comment