setup-dotnet/.github/csc.json
Danny McCormick 211f0312b0
Add C# problem matcher (#2)
* Add c# problem matcher

* ##[add-matcher]
2019-06-21 09:44:33 -04:00

17 lines
459 B
JSON

{
"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
}
]
}
]
}