Assuming this folder structure in the TFS 2010
Main
Collection_A
Solution_A1
Solution_A2
Reference Assemblies
Collection_B
Solution_B1
Project_B1A
Project_B1A references the dll in Reference Assemblies of Collection_A by using relative path (..\..\..\Collection_A\Reference Assemblies\Whatever.dll). When defining the build definition in TFS, we are having trouble in the the Workflow tab.
Project_B1A => $(SourceDir)
for Reference Assemblies it should be
Reference Assemblies => $(SourceDir)\..\..\..\Collection_A\Reference Assemblies
but then TFS throws error
TF215083: The local path $(SourceDir)\..\..\Collection_A\Reference Assemblies for a
workspace mapping is not valid. (Detail Message: TF10202: The path '..' ends with a
character which is not allowed. Characters which are not allowed include '.' and ' '.)
We have tried $(SourceDir)\Collection_A\Reference Assemblies and $(BuildDir)\Collection_A\Reference Assemblies but as expected none worked. Are there any other variable that could be used?