【发布时间】:2020-05-12 19:40:27
【问题描述】:
使用 VS Code 版本:1.44.2(系统设置)。
$error.clear()
Write-Host "this is the error message"
Write-Host "the result is $($?)"
$null -eq $LASTEXITCODE
Write-Host "lec is $($LASTEXITCODE)"
$LASTEXITCODE
我在开始调试之前使用了 $error.Clear()。
PS C:\src\t> $error.clear()
PS C:\src\t> $error
PS C:\src\t> c:\src\t\Trap.ps1
### debugging started, beak on first statement, $error already has an entry
[DBG]: PS C:\src\t> $error
The term '__Invoke-ReadLineForEditorServices' is not recognized as the name of a cmdlet, function,
script file, or operable program. Check the spelling of the name, or if a path was included, verify
that the path is correct and try again.
[DBG]: PS C:\src\t>
【问题讨论】:
标签: powershell visual-studio-code vscode-debugger