240
|
1 {
|
|
2 // See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
3 // for the documentation about the tasks.json format
|
|
4 "version": "0.1.0",
|
267
|
5 "command": "dotnet",
|
240
|
6 "args": [
|
|
7 ],
|
|
8 "showOutput": "silent",
|
|
9 "tasks": [
|
|
10 {
|
|
11 "taskName": "build",
|
|
12 // Show the output window only if unrecognized errors occur.
|
|
13 "showOutput": "always",
|
|
14 // Use the standard MS compiler pattern to detect errors, warnings and infos
|
|
15 "problemMatcher": "$msCompile",
|
|
16
|
|
17 "args" : [
|
267
|
18 "/p:Configuration=Debug"
|
240
|
19 ]
|
|
20 },
|
|
21 {
|
|
22 "taskName": "clean",
|
|
23 // Show the output window only if unrecognized errors occur.
|
|
24 "showOutput": "always",
|
|
25 // Use the standard MS compiler pattern to detect errors, warnings and infos
|
267
|
26 "problemMatcher": "$msCompile"
|
240
|
27 },
|
|
28 {
|
267
|
29 "taskName": "test",
|
240
|
30 "isTestCommand": true,
|
|
31 // Show the output window only if unrecognized errors occur.
|
|
32 "showOutput": "always",
|
|
33 // Use the standard MS compiler pattern to detect errors, warnings and infos
|
267
|
34 "problemMatcher": "$msCompile"
|
240
|
35 }
|
|
36 ]
|
|
37 } |