https://github.com/ammaraskar/msvc-problem-matcher
Github Action to problem match MSVC output
https://github.com/ammaraskar/msvc-problem-matcher
Last synced: 10 months ago
JSON representation
Github Action to problem match MSVC output
- Host: GitHub
- URL: https://github.com/ammaraskar/msvc-problem-matcher
- Owner: ammaraskar
- License: apache-2.0
- Created: 2020-02-16T11:50:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-25T20:46:58.000Z (over 2 years ago)
- Last Synced: 2025-08-11T14:50:21.406Z (10 months ago)
- Language: JavaScript
- Size: 42 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# msvc-problem-matcher
Github Action to [problem match](https://github.com/actions/toolkit/blob/master/docs/problem-matchers.md)
output from MSVC. This allows warnings and errors from the compiler to be
prominently featured in pull requests like so:

This is a direct port of the `$msCompile` rule from vscode. Typical usage will
be:
```yaml
- uses: ammaraskar/msvc-problem-matcher@master
- name: Build Project
run: msbuild project.sln
```
**Note that this action does not build your code for you. It only makes the
errors and warnings from your compiler more prominent.**
## Development
Keep this up-to-date with the upstream vscode `msCompile` matcher:
https://github.com/microsoft/vscode/blob/d5386d323342076c82a0e2331df5c603d980f059/src/vs/workbench/contrib/tasks/common/problemMatcher.ts#L1208-L1216