I guess in the Project Linker options,
Linker, Input, Ignore Specific Library,
you need to add msvcrt??.lib
otherwise it will always use it.
Then put the old .lib of your choice in your project folder and add it to
Additional Dependencies
and in to your library path.
There's a huge gotcha doing that though - if the standard C headers have changed in any way (for instance, say someone changed FILE or time_t or something, which does happen) then the old runtime library may not work with code generated by the new compiler.  You might get linker errors (missing symbols) or you might get runtime errors or crashes.
Another possibility is to LoadLibrary your desired runtime yourself and GetProcAddress the C runtime library functions you want.  That's subject to the same gotcha...
Jim