I use Pre- / Post-build events in VS2012 project files to complete build tasks. This works fine locally, but I have a problem with our TFS 2012 Build Server.
Locally, $(TargetDir) for each project is installed in its own /bin .
However, on the build server, this is the only /bin outside the solution root folder in which it combines all the generated binaries.
This is not at all what I want!
I just want the build server to behave just like my VS2012 build.
There seems to be no settings in the build template that allows me to change this.
Can someone tell me how can I get the build server to output my binaries to a separate /bin for each project?
(FYI, the build server is configured to create a .sln file, not some additional MSBuild script.)
source share