Reputation: 9154
I saw on chrome project where they said we can use VS08 to build the project code but not VS10. What exactly is the issue with the backward compatibility of VS? Is there any way to solve it without installing the previous version?
Upvotes: 1
Views: 425
Reputation: 499382
The project files are of different formats and contain different project/solution specific meta-data.
VS2010 will automatically convert VS2008 projects.
It appears from the page, that both VS 2005 and VS 2008 require a bunch of hotfixes to be installed.
This suggests that there are certain bugs in the plain vanilla version that the hotfixes address, which have probably not been addressed in VS 2010 yet. If this is the case, and the fixed are required for a successful compilation, you have your explanation.
Upvotes: 2