File tree Expand file tree Collapse file tree 1 file changed +45
-0
lines changed
Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3+ // for the documentation about the tasks.json format
4+ "version" : " 2.0.0" ,
5+ // "_runner": "terminal",
6+ "windows" : {
7+ "command" : " cmd" ,
8+ "args" : [" /c" , " chcp 65001 && " ]
9+ },
10+ "linux" : {
11+ "command" : " sh" ,
12+ "args" : [" -c" ]
13+ },
14+ "type" : " shell" ,
15+ "suppressTaskName" : true ,
16+ "tasks" : [
17+ {
18+ "label" : " Full testing" ,
19+ "args" : [
20+ " oscript" ,
21+ " ${workspaceRoot}/tasks/test.os"
22+ ],
23+ "group" : {
24+ "kind" : " build" ,
25+ "isDefault" : true
26+ },
27+ // "presentation": {
28+ // "echo": true,
29+ // "reveal": "always",
30+ // "focus": false,
31+ // "panel": "shared",
32+ // "showReuseMessage": true
33+ // },
34+ "problemMatcher" : {
35+ "fileLocation" : " absolute" ,
36+ "pattern" : {
37+ "regexp" : " {Модуль\\ s+(.+)\\ s\\ /\\ s.*:\\ s+(\\ d+)\\ s+\\ /\\ s+([^{]*)" ,
38+ "file" : 1 ,
39+ "location" : 2 ,
40+ "message" : 3
41+ }
42+ }
43+ }
44+ ]
45+ }
You can’t perform that action at this time.
0 commit comments