Reputation: 6049
I’ve created a build project using Team Foundation Build in VS2008. I created it using just 1 of the many solutions that I need to build. Now that I got it to build with 1 solution, I want to add more solutions to the project file. How do I add more solutions?
John.
Upvotes: 0
Views: 502
Reputation: 32565
When you defined the build, you had to create an MSBuild Project File; By default they go into a folder $/{Project}/TeamBuildTypes/{BuildName}. Find the .proj file in the appropriate folder, check it out for edit and find the section of the XML file "<SolutionToBuild Include="...">". Copy that section and update the "Include" path to whatever your solution is. Once you check it in, your builds will include the new solution(s).
Upvotes: 1