tfsbuild - In TFS Build (MSBuild), how can I only have a specifc project in my drop folder -


"From the box" will compile the complete solution in TFS and will drop all "deliverables" to all your project drop folder In.

How can the only deliverables eliminate a single "main" project in the drop folder, why are still all other projects (which depend on it)?

It is not certain if you want to, but try:

  & lt; Target name = "afterbild" & gt; & Lt; Copy SourceFiles = "c: \ drop \ myfile.dll" DestinationFiles = "c: \ temp" /> & Lt; Delete files = "c: \ drop \ myfile.dll" /> & Lt; / Target & gt;  

Basically, take them away from the drop-down location after build.


Comments