Ooui-tws-port/.vscode/tasks.json

45 lines
1.2 KiB
JSON
Raw Normal View History

2017-06-14 01:29:08 +00:00
{
"version": "0.1.0",
"command": "dotnet",
"isShellCommand": true,
"args": [],
"tasks": [
{
"taskName": "build",
"args": [
2017-06-14 04:18:09 +00:00
"${workspaceRoot}/Ooui.sln"
2017-06-14 01:29:08 +00:00
],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
2017-06-14 23:48:42 +00:00
},
{
"taskName": "test",
"args": [
"${workspaceRoot}/Tests/Tests.csproj"
],
"isTestCommand": true,
2017-06-19 01:38:00 +00:00
"problemMatcher": {
"owner": "external",
"fileLocation": "absolute",
"severity": "error",
"pattern": [
{
"regexp": "^Error Message:\\s*$"
},
{
"regexp": "^\\s*(.*)$",
"message": 1
},
{
"regexp": "^Stack Trace:\\s*$"
},
{
"regexp": "^\\s*at (.*\\(\\)) in (.*):line (\\d+)$",
"file": 2,
"location": 3
}
]
}
2017-06-14 01:29:08 +00:00
}
]
}