tags:

views:

17

answers:

0

Hi all,

I have an automated build scenario in TFS but I can figure out how should I do it:

Solution s1 have 3 projecs a1, a2 and a3. projects a1 and a2 are class library and builds into two dlss a1.dll and a2.dll. Project a3 needs 2 dll's. In TFS I'm forced to create a bin folder in source control and add a1.dll and a2.dll to it. So with each team build, TFS Build get a1.dll and a2.dll from source control mounted bin folder not new dlls built during build of a1 and a2. As source control mounted bin folder is not updated automatically, a3 project is always built with same a1.dll and a2.dll regardless of new versions of a1.dll and a2.dll.

The problem is how to tell TFS build to use new generated a1.dll and a2.dll not thoese from source control mounted bin folder?

Any help is appricated.