I have a TFS Project with two main folders:
Project
--Folder1
----LibraryA
--Folder2
----AppA referencing LibraryA
When I build AppA solution, TFS fails to build, providing the following Error:
C:\Builds\1\Project\AppA\Sources\Folder2..\Folder1\LibraryA\LibraryA.csproj
I think TFS is doing something like $(CurrentBuildDir)$(ProjectReferenceSourceLocation), which just sticks the ..\Folder1\LibraryA part on there.
I know shared assemblies should probably be build in their own solution and then references made to the build copies but this is how it is.
Any ideas how to get TFS to know how to navigate out of the solution folder to find referenced projects?
TIA