I have a code base that I am compiling in to a library. Normally I would send the library as MSVC++ 10.0 _MSC_VER == 1600 (Visual Studio 2010)
but my customer is asking for it as MSVC++ 11.0 _MSC_VER == 1700 (Visual Studio 2012)
.
I have downloaded/installed and compiled new versions of my lib with Visual Studio 2012. Now I want to check the lib to see what _MSC_VER
version it is currently using to ensure that I am sending them the correct version.
How do you detect what _MSC_VER
is used in a library?
You might be able to try dumpbin.