I'm using Team City to handle our deployment.
So I created a 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
That means that the msbuild task doesn't transform the web.config.
But when I use the publish functionality in visual studio , the transformation is done.
So, what's the difference between a msbuild and a publish ? And how can I force my msbuild task to transform the config ?