views:

31

answers:

2

When I build my solution, it dumps all the binaries into one folder. How can I cause it to split up the files by project like Visual Studio does?

A: 

You can find guidance on how to change the default behavior in this blog post.

Thanks, Ladislau

Ladislau Szomoru
Ugh. I find it hard to believe that they messed up this use case so badly.
Jonathan Allen
+1  A: 

Just edit your TFSBuild.proj file for the build, and add this to opne of the property groups:

<CustomizableOutDir>true</CustomizableOutDir>

This will automatically then cause the build to output the build output as per normal (like Visual Studio).

Antony Gibbs