Joe
Joe

Reputation: 744

TFS and VS 2010

I attempted to open a solution today at my new job and it said I need to convert it because it was made in an earlier version of Visual Studio. It also said that the solution would automatically be checked out in source control.

Obviously I do not want to do anything that messes anything up. Is it possible to just change my target framework in Visual Studio and not have to deal with any conversion stuff, or should I just install Visual Studio 2008?

Upvotes: 0

Views: 131

Answers (3)

Greg Levenhagen
Greg Levenhagen

Reputation: 924

You can change your target framework, but that will not stop the conversion. The issue is with the project and solution files. The are XML based MSBUILD. What is happening is an upgrade of MSBUILD, not the .NET framework.

You should install VS2008 and use it until all possible team members are upgraded to VS2010. Once you upgrade, members using VS2008 will not be able to open the solution. There are some was to hack around MSBUILD upgrades, but I don't recommend them.

Upvotes: 0

Daniel A. White
Daniel A. White

Reputation: 191036

It will break compatibility with Visual Studio 2008. Keep your company's solutions the same format as you get them unless directed to change them.

Upvotes: 0

Gregory A Beamer
Gregory A Beamer

Reputation: 17010

If ANY developers are still using VS 2008, do not upgrade the solution. You can create a new solution and have it sit "side by side" or you can branch the code. But if you overwrite the solution with a VS 2010 solution, they will not be able to work on it again.

Upvotes: 1

Related Questions