我尝试通过管道将以下两个调用传递给 NUL,但没有成功:
net stop "Logging Service">nul 2>&1
taskkill /IM LogServiceHost.exe /f >nul 2>&1
他们将阻止我的构建周期通过:
Error 1 The command "
net stop "Logging Service">nul 2>&1
taskkill /IM LogServiceHost.exe /f >nul 2>&1" exited with code 128. LoggingUtilities
有什么想法可以让我触发这些预构建事件而不关心它们返回什么,而不是让它抑制我的构建?