I have MyProj.proj file that I use as 'Projects To Build' in my tfs build configuration.
C++, C# and VB.Net solutions are listed in MyProj.proj. Each solution has the same output directory - Bin folder (C:\Builds...\MyProject\Bin), so all build artifacts (dlls, exe files, ..) are placed there after successful build.
I want to copy C:\Builds...\MyProject\Bin to the drop folder on other box when tfs build finishes successfully. For this purpose I checked Copy build output to the following drop folder checkbox and specified UNC path \\OtherBoxFromMyNetwork\BuildArtifacts
But it doesn't work for me. I see that folder with name according to build number was created in a drop folder: \OtherBoxFromMyNetwork\BuildArtifacts\MyProject\Build_Number , but it contains only logs folder, so Bin directory wasn't copied. Why?