Skip to content

Commit e322cea

Browse files
author
Zachary Eisinger
authored
Merge pull request #63 from actions/fix-problem-matcher
Fixing dotnet compiler Problem Matcher
2 parents 6f2692a + 6f7ce4e commit e322cea

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/csc.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
"owner": "csc",
55
"pattern": [
66
{
7-
"regexp": "^([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(CS\\d+)\\s*:\\s*(.*)$",
7+
"regexp": "^([^\\s].*)\\((\\d+)(?:,\\d+|,\\d+,\\d+)?\\):\\s+(error|warning)\\s+([a-zA-Z]+(?<!MSB)\\d+):\\s*(.*?)\\s+\\[(.*?)\\]$",
88
"file": 1,
9-
"location": 2,
9+
"line": 2,
1010
"severity": 3,
1111
"code": 4,
12-
"message": 5
12+
"message": 5,
13+
"fromPath": 6
1314
}
1415
]
1516
}
1617
]
17-
}
18+
}

0 commit comments

Comments
 (0)