问题是如果这个过程不存在,构建就会失败。我试着写这样的东西
tasklist /nh /fi "imagename eq XDesProc.exe" | find /i "XDesProc.exe" && (
TASKKILL /F /IM "XDesProc.exe"
) || (
echo XAML designer is not running
)
但 ERRORLEVEL 也等于 1,如果 XDesProc.exe 未运行,则 bild 失败。
问题是如果这个过程不存在,构建就会失败。我试着写这样的东西
tasklist /nh /fi "imagename eq XDesProc.exe" | find /i "XDesProc.exe" && (
TASKKILL /F /IM "XDesProc.exe"
) || (
echo XAML designer is not running
)
但 ERRORLEVEL 也等于 1,如果 XDesProc.exe 未运行,则 bild 失败。