How can I overcome compatibility. Problems with SOLUTION VS2005 / 8 files?

I use VS2008 at home and love it, while approaching the upgrade work from 2005 to 2008, one of my obvious reasons for concern is all the 2005 solutions that we have.

While for us it can simply be updated until 2008, we work with other developers who use 2005 and will not be updated until 2008 in the near future.

I understand that project files are incompatible without problems, but solution files are not .

Here are some links I came across:

I'm curious, MS approached this issue on? Did they have any corrections to solve it? This seems like a rather unsuccessful attempt at cross-compatibility, as there are no real changes between the solution files (i.e., 2008 can easily ignore additional content since 2005).

PS: This, of course, is all assumed that we do not use any new frameworks in 3.5.

+3
source share
1 answer

- sln - 2005 2008 . , sln ( ), . MSTest (darned testrunconfig ... ...).

, 2005 2008 , 2008 # 3 . , , - :

int[] data = {1,2,3,4,5};
string[] strings = Array.ConvertAll(data, delegate(int i)
    {return i.ToString();});

<int,string> # 2.0, # 3.0. / , - VS2008/# 3.0 " ", # 2.0.

, , ...

+3

All Articles