How can I tell what version of Visual Studio was last used to work on a project?

前端 未结 4 739
小蘑菇
小蘑菇 2021-02-03 22:02

I\'m working with some older code, and I think the person who last built it was using Visual Studio 6. There\'s no .vcproj file, but the .dsp and .dsw files have the following h

4条回答
  •  Happy的楠姐
    2021-02-03 23:03

    The the solution/VS version matrix is:

    • VS 6.0 -> 6.0
    • VS 2002 -> 7.0
    • VS 2003 -> 8.0
    • VS 2005 -> 9.0
    • VS 2008 -> 10.0
    • VS 2010 -> 11.0
    • VS 2012 -> 12.0
    • VS 2013 -> 10.0 to 12.0
    • VS 2015 -> 10.0 to 14.0
    • VS 2017 -> 10.0 to 15.0
    • VS 2019 -> 10.0 to 16.0

    Compatibility between solutions does not guarantee compatibility between projects. Check the Visual Studio 2013 Compatibility document for more detail.

提交回复
热议问题