From c39700fb26ed20d4a56c8ea0add795a7cad8f529 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Thu, 20 Jun 2019 13:40:28 -0400 Subject: [PATCH] Add c# problem matcher --- .github/csc.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/csc.json diff --git a/.github/csc.json b/.github/csc.json new file mode 100644 index 0000000..764ede5 --- /dev/null +++ b/.github/csc.json @@ -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 + } + ] + } + ] +} \ No newline at end of file