aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/csc.json18
-rw-r--r--.github/workflows/build.yml3
-rw-r--r--.github/workflows/checks.yml3
-rw-r--r--.github/workflows/release.yml3
4 files changed, 27 insertions, 0 deletions
diff --git a/.github/csc.json b/.github/csc.json
new file mode 100644
index 00000000..2b960edd
--- /dev/null
+++ b/.github/csc.json
@@ -0,0 +1,18 @@
+{
+ "problemMatcher": [
+ {
+ "owner": "csc",
+ "pattern": [
+ {
+ "regexp": "^((?:\\\\|/)(?:[^\\\\/:]+(?:\\\\|/))+[^\\\\/]+)\\((\\d+),(\\d+)\\):\\s+([a-zA-Z]+)\\s+([^:]+):\\s+([^[]+)\\s+\\[",
+ "file": 1,
+ "line": 2,
+ "column": 3,
+ "severity": 4,
+ "code": 5,
+ "message": 6
+ }
+ ]
+ }
+ ]
+}
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index bbc2eca8..f0aa2a06 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -40,6 +40,9 @@ jobs:
- uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
+
+ - name: Overwrite csc problem matcher
+ run: echo "::add-matcher::.github/csc.json"
- name: Get git short hash
id: git_short_hash
diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml
index 94d0a342..25276b72 100644
--- a/.github/workflows/checks.yml
+++ b/.github/workflows/checks.yml
@@ -31,6 +31,9 @@ jobs:
with:
global-json-file: global.json
+ - name: Overwrite csc problem matcher
+ run: echo "::add-matcher::.github/csc.json"
+
- run: dotnet restore
- name: Print dotnet format version
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 63e6d018..5091944a 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -67,6 +67,9 @@ jobs:
- uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
+
+ - name: Overwrite csc problem matcher
+ run: echo "::add-matcher::.github/csc.json"
- name: Get version info
id: version_info