Vlad
Vlad

Reputation: 2165

How to share the same TFS workspace (same file system folder) between different versions of Visual Studio?

How to share the same TFS workspace (same file system folder) between different versions of Visual Studio? Is it possible? within one TFS root I have several solutions with different Visual Studio versions and all of them under TFS version control. I need to delete project from each solution and version control part of sln file should be updated properly.

Updated: So I will appreciate answer with two aspects in mind (2 subitems but both closely related to TFS because TFS has its partition in sln file and shifts numbers after project removing):

Upvotes: 3

Views: 1390

Answers (1)

Jason Williams
Jason Williams

Reputation: 57902

From VS 2010 onwards (2010, 2012, 2013) the solution files are compatible, so you can usually switch between these versions of Visual Studio without problems.

For earlier versions the easiest approach is to have separate solution files (e.g. MyProject.sln, MyPorject2008.sln, MyProject2005.sln). You will need to manually apply updates that you make (adding/removing files etc) across all these sln files, but otherwise they will coexist happily.

Upvotes: 1

Related Questions