After VS2015 updated my project to the new Platform toolset v140, it fails to build due to a linker error : LNK1104 cannot open file \'libucrt.lib\'.
It appears thi
By default if you compile your project with vs2015, Universal CRT will be in use. (Nothing special needs to be done)
But if you want to statically link (and get rid of ucrt dependency) - read this article:
Visual studio 2015 run-time dependencies or how to get rid of Universal CRT?