Reputation: 871
Visual Studio 2015
TFS 2012
I have a project where there are about 40 projects. The layout is something like this.
*Proj 1
*Proj 2
*System -> System.SLN
*System -> Proj 3
*System -> Proj 4
All of the projects are in the solution but half of the projects are in a folder one up from the solution.
The issue is that the build server says that it cannot find the projects that are one folder up (Proj 1 and Proj 2). Is there something I can do to get all of the projects to compile on the build server?
Upvotes: 0
Views: 352
Reputation: 1240
It's possible the workspace repository mappings in your build definition are setup where the root is at the solution, making the build unable to get the parent folder. Set the root mapping to its parent folder instead.
Your .sln also might be configured to work specifically on your machine instead of having relative paths. Make sure the references to each project use something like "..\proj 1"
instead of "D:\work\proj 1"
.
I don't have enough info for a definitive answer; I am making many assumtions based on the limited info given.
Upvotes: 1