Compiled couple of .dll\'s using visual studio 2015, and tried to deploy on some older windows 7 / 64 bit. Tried also to guess which dll\'s are needed for application to sta
I was able to solve this by setting the
C/C++ > Code Generation > Runtime Library
compiler option
/MDd
to /MTd
/MD
to /MT
This removed all the API-MS-WIN-CRT-*
and runtime dll references and caused all the CRT code to be statically linked.
Details on the new VS2015 Universal CRT (dynamic and static) are here: https://msdn.microsoft.com/en-us/library/abx4dbyh.aspx