Using Visual Studio 2013 with v3.0 problems and solution

Problem 1:
error LNK2038: mismatch detected for ‘*MSC_VER’: value ’1700’ doesn’t match value ’1600’
Solution:Edit all the * .vcxproj files delete
<*ProjectFileVersion>?
Problem 2: xcopy does not work in build event
change “? Resources” to "? Resources
It does not know if Resources is a directory or a file name
Problem 3: errors in CCGeometry.cpp
Error 3 error C2039: ’min’ : is not a member of ‘std’
why they took out min and max is beyond me any way.
just define
inline float min(float a, float b){ if (a < b) return a; return b; }
inline float max(float a, float b){ if (a < b) return b; return a; }

If you encounter other problems could you post the solution.

Andre