I’ve managed to get Teamcity running and connecting into bitbucket and the final step I’d like would be to get the MVC 4 project copied into another folder on the server ready for an xcopy deployment onto a web host.
I’m using MSBUILD, as the build agent.
Thanks in advance.
Preferred way is to use publishing targets in MSBuild.
Build file pathto your web projectcsprojfileTargettoClean;Build;PublishCommand line parametersto/p:Configuration=Release;PublishDir=\\your\target\pathHope this helps.