Reputation: 10482
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
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
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