我在 VSCode 中有一个 Powershell 任务,但不知道如何完成这项problemMatch
工作
{
"version": "0.1.0",
"command": "PowerShell.exe",
"isShellCommand": true,
"suppressTaskName": true,
"args": [
"& '${file}'"
],
"tasks": [
{
"taskName": "Build",
"isBuildCommand": true,
"showOutput": "always",
"fileLocation": ["absolute"],
"problemMatcher": [
{
"pattern": {
"regexp": "At (.*\\.ps1):(\\d*) char:(\\d*)(.*)\\n\\+(.*)\\n\\+(.*)\\n(.*)",
"file": 1,
"line": 2,
"column": 3,
"message": 7
}
}]
}]
}
正则表达式的目标是这样的:
At C:\tmp\C1-INT to C1-QA\a.ps1:1 char:11
+ "asdasds" !
+ ~
Unexpected token '!' in expression or statement.
文件:第 1 组“ C:\tmp\C1-INT 到 C1-QA\a.ps1 ”
行:第 2 组“ 1 ”
栏目:第 3 组“ 11 ”
消息:第 7 组 意外令牌“!” 在表达或陈述中。