Misiu
Misiu

Reputation: 4919

TFS 2013 - Changeset counter increment for individual projects

I'm trying to migrate my existing code to TFS 2013 Express.
I have single Team Project Collection and inside it 3 team projects:

-web
-winforms
-wpf

If I add project web-project1 (solution) to team project (for example to web) and check in I get info that change set 1 was saved.
If I add another project (winforms-project1) to other team project (winforms) and check in I get info that changeset 2 was saved.
If I return to first project (web-project1), change something and check in I get information that changeset 3 was saved, but this is my second commit to that project.

Can I configure TFS to have changeset incrementation counter for individual projects instead of one global counter for Team Project Collection?

Upvotes: 0

Views: 201

Answers (1)

Wim
Wim

Reputation: 12082

No, TFS changesets exist across the whole TeamCollection, so are shared amongst TeamProjects.

This allows you to copy and move projects with history and changeset info across TeamProject boundaries.

In your specific example, creating a Web & Winforms TeamProject sounds like you are going about it the wrong way and are starting off at too high a level.

Surely your UI projects could share Business Logic code? Therefore, they should belong in one TeamProject.

Upvotes: 2

Related Questions