While migrating application code from VS2010 to VS2015, I got the error U1077 related to link.exe in NMAKE file and many more related errors.
After alot of research on this error and migartion related stuff,Finally I am here with the solution :
There are few library version and name related changes in VS2015.
So in make file we have to add
"vcruntime.lib"
to solve this error.
Comments