I use Team City to handle our deployment.
So, I created an MSBuild step to compile our .sln file.
After the build, I have these three files in my output directory:
- Web.config
- Web.Release.config
- Web.Debug.config
This means that the msbuild task does not convert the web.config file.
But when I use the publish function in visual studio, the conversion is done.
So what is the difference between msbuild and posting? And how can I get the msbuild task to convert the configuration?
source share