From c61e78b5854116c69762902be74bebdb79dd382b Mon Sep 17 00:00:00 2001 From: Chris Patterson Date: Thu, 10 Oct 2019 14:48:45 -0400 Subject: [PATCH] Fixed matcher regex --- .github/csc.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/csc.json b/.github/csc.json index 764ede5..c5c47ef 100644 --- a/.github/csc.json +++ b/.github/csc.json @@ -1,10 +1,10 @@ { "problemMatcher": [ { - "owner": "csc", + "owner": "msCompile", "pattern": [ { - "regexp": "^([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(CS\\d+)\\s*:\\s*(.*)$", + "regexp": "^(?:\\s+\\d+\\>)?([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\)\\s*:\\s+(error|warning|info)\\s+(\\w{1,2}\\d+)\\s*:\\s*(.*)$", "file": 1, "location": 2, "severity": 3,