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

前端 未结 4 677
小蘑菇
小蘑菇 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条回答
  •  有刺的猬
    2021-02-03 22:40

    Check the binary signatures in the compiled files.
    By this you can get compiler version.
    By compiler version you can get Visual Studio version.

    By compiler I mean not only cl.exe, but resource compiler, linker, etc. Do you have some compiled materials?

提交回复
热议问题