From b90f08a647b103dfb195ad8043e21cd021c6d910 Mon Sep 17 00:00:00 2001 From: Chris Patterson Date: Thu, 10 Oct 2019 15:01:09 -0400 Subject: [PATCH] Using correct msCompile regex --- .github/csc.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/csc.json b/.github/csc.json index 764ede5..70e71d8 100644 --- a/.github/csc.json +++ b/.github/csc.json @@ -4,7 +4,7 @@ "owner": "csc", "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, @@ -14,4 +14,4 @@ ] } ] -} \ No newline at end of file +}