Rossini
Rossini

Reputation: 6049

Add Solution to Existing Project File in Team Foundation Build

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

Answers (1)

Chris Shaffer
Chris Shaffer

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

Related Questions