I do not want to convert decision files when switching from Visual Studio 2008-2010. How?

I have a new working laptop. I want to run Visual Studio 2010 Beta 2. However, the rest of my team uses Visual Studio 2008 with .Net 3.5, and I do not want to check the solution migration code in TFS. In fact, I don't want any migration code at all - I just want to use the old .NET platform with our old solution with the new IDE. How can i do this? Is it possible? Thanks!

+3
source share
2 answers

All migration is one line that changes in the solution file and cannot be avoided. Only the solution file was changed - not the project file - so I suggest doing the “standard” thing and copy your file Solution.slnto Solution2010.slnand transfer it. One thing you should notice is that if the solution file is updated by adding or removing projects, you must synchronize the two files.

+6
source

Sounds like you can't. These are the files that your project refers to ...

http://blogs.msdn.com/visualstudio/archive/2010/03/15/why-does-visual-studio-2010-convert-my-projects.aspx

+1
source

Source: https://habr.com/ru/post/1722834/


All Articles