ポストビルドイベントで 'error:'を出力するとVS2012でビルドが中断されるのはなぜですか?
cmd.exe /c "ECHO error : unexplainable"
原因この追加: ':' 文字
1>------ Build started: Project: xxx, Configuration: Debug Win32 ------
1>EXEC : error : unexplainable
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets(134,5): error MSB3073: The command "cmd.exe /c "ECHO error : unexplainable"
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppCommon.targets(134,5): error MSB3073: :VCEnd" exited with code -1.
========== Build: 0 succeeded, 1 failed, 1 up-to-date, 0 skipped ==========
を 'エラー' の文字列が続いている場合にのみ発生します。
cmd.exe/c ECHO "エラー:説明可能" –
@HansPassant WOW MUCH LAUGH – coda