kasperhj
kasperhj

Reputation: 10482

Version control with Visual Studio, should individual project have their own version control?

I currently have a solution wide version control. Is it best practice, or is it better to have version control on each project in the solution?

Upvotes: 0

Views: 52

Answers (2)

Arne
Arne

Reputation: 2146

Having different versions for each project is more effort and you should do that only if you need it. E.g. these projects are used by different solutions and may be released in different versions that you have to support independently.

If all that does not apply, stick with one version for all projects.

Upvotes: 2

Mark Hall
Mark Hall

Reputation: 54532

Everyone probably has their own way of going about it. Personally I would keep the version control solution wide, unless an individual project is able to stand on its own without the rest of the solution.

Upvotes: 1

Related Questions