Add C# problem matcher (#2)

* Add c# problem matcher

* ##[add-matcher]
This commit is contained in:
Danny McCormick
2019-06-21 09:44:33 -04:00
committed by GitHub
parent 187843cd79
commit 211f0312b0
2 changed files with 21 additions and 1 deletions

17
.github/csc.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
"problemMatcher": [
{
"owner": "csc",
"pattern": [
{
"regexp": "^([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(CS\\d+)\\s*:\\s*(.*)$",
"file": 1,
"location": 2,
"severity": 3,
"code": 4,
"message": 5
}
]
}
]
}