VS2010 正在创建“Debug\test2.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
问题一:VS2010 正在创建“Debug\test2.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
方法解决:
The relevant setting is in this file C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets
Look for the following element of the XML tree:
<Touch AlwaysCreate="true" Files="$(LastBuildUnsuccessful)"/>
注释掉这一句 “<!-- **** -->” ,重新编译。
参考自:https://blog.csdn.net/mangobar/article/details/52592908