Skip to content

Commit

Permalink
Merge pull request #63 from actions/fix-problem-matcher
Browse files Browse the repository at this point in the history
Fixing dotnet compiler Problem Matcher
  • Loading branch information
Zachary Eisinger authored and GitHub committed Dec 16, 2019
2 parents 6f2692a + 6f7ce4e commit e322cea
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/csc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
"owner": "csc",
"pattern": [
{
"regexp": "^([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(CS\\d+)\\s*:\\s*(.*)$",
"regexp": "^([^\\s].*)\\((\\d+)(?:,\\d+|,\\d+,\\d+)?\\):\\s+(error|warning)\\s+([a-zA-Z]+(?<!MSB)\\d+):\\s*(.*?)\\s+\\[(.*?)\\]$",
"file": 1,
"location": 2,
"line": 2,
"severity": 3,
"code": 4,
"message": 5
"message": 5,
"fromPath": 6
}
]
}
]
}
}

0 comments on commit e322cea

Please sign in to comment.