Yoann. B
Yoann. B

Reputation: 11143

How-to Keep Projects Structure with TFS Team Build

I've a Solution structure as below :

Solution 1 (Solution1.sln)

I created a Team Build definition working with Solution1.sln. My problem is that compiled binaries are stored into a single flat output folder : BuildName\Release

But I want to keep my project structure :

BuildName\Project 1\Release

BuildName\Project 2\Release

BuildName\Project 3\Release

Upvotes: 4

Views: 1715

Answers (2)

piers7
piers7

Reputation: 4414

See Preserving Output Directory Structures in Orcas Team Build. It's pretty irritating that this is neccesary, and it's a per-project tweak, but it can be made to work.

Upvotes: 3

John Saunders
John Saunders

Reputation: 161773

The default for Team Build is as you've seen - binaries in one folder, web sites each in a folder structure of their own; one per configuration being built. If you're just getting started with TFS, I suggest you try to use the default. You're more familiar with separate folders, but almost everything you read about Team Build will use a single output folder.

Other than familiarity, is there a reason you want separate folders?

Upvotes: 2

Related Questions