Build sucess but one fatal error LNK1104: cannot open file 'LIBC.lib',-Collection of common programming errors
Since you are migrating from 6.0 it probably is because of some project settings. Try this: In your Project Property settings in C++-> Code Generation -> Runtime Library….. see if it is set to /ML ? If it is, then set it to /MD. That should resolve the issue.
By the way, you might have to compile all your dependencies (.lib and .dll) with /MD for your error to resolve.