I'm using Pre-/Post-build events in my VS2012 project files to perform build tasks. This works perfectly fine locally, but I have an issue running it from our TFS 2012 Build Server.
Locally the $(TargetDir)
for each project is set to its own /bin
folder.
On the build server however this is set to a single /bin
folder outside of the solution root folder in which it consolidates all the binaries that were build.
This is not at all what I want!
I just want the build server to behave the same way as my VS2012 build does.
There doesn't seem to be any setting in the build template that allows me to alter this.
Can anyone tell me how I can make the build server output its binaries to a separate /bin
folder for each project?
(FYI, the build server is set to build the .sln
file, not some additional MSBuild script.)