Skip to content

Commit a6f4d05

Browse files
rkeithhilldaviwil
authored andcommitted
Fix tasks to run under VSCode 1.17.2 on Linux
None of these were working correctly on Ubuntu 16.04.
1 parent 9dcdc62 commit a6f4d05

File tree

1 file changed

+16
-25
lines changed

1 file changed

+16
-25
lines changed

.vscode/tasks.json

Lines changed: 16 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -17,48 +17,39 @@
1717
"tasks": [
1818
{
1919
"taskName": "Install",
20-
"suppressTaskName": true,
21-
"args": [
22-
"Invoke-Build Restore"
23-
]
20+
"type": "shell",
21+
"command": "Invoke-Build Restore"
2422
},
2523
{
2624
"taskName": "CleanAll",
27-
"suppressTaskName": true,
28-
"args": [
29-
"Invoke-Build CleanAll"
30-
]
25+
"type": "shell",
26+
"command": "Invoke-Build CleanAll"
3127
},
3228
{
3329
"taskName": "Clean",
34-
"suppressTaskName": true,
35-
"args": [
36-
"Invoke-Build Clean"
37-
]
30+
"type": "shell",
31+
"command": "Invoke-Build Clean"
3832
},
3933
{
4034
"taskName": "BuildAll",
41-
"suppressTaskName": true,
42-
"isBuildCommand": true,
43-
"args": [
44-
"Invoke-Build BuildAll"
45-
],
35+
"type": "shell",
36+
"command": "Invoke-Build BuildAll",
4637
"problemMatcher": []
4738
},
4839
{
4940
"taskName": "Build",
50-
"suppressTaskName": true,
51-
"args": [
52-
"Invoke-Build Build"
53-
],
41+
"type": "shell",
42+
"command": "Invoke-Build Build",
43+
"group": {
44+
"kind": "build",
45+
"isDefault": true
46+
},
5447
"problemMatcher": []
5548
},
5649
{
5750
"taskName": "Test",
58-
"suppressTaskName": true,
59-
"args": [
60-
"Invoke-Build Test"
61-
],
51+
"type": "shell",
52+
"command": "Invoke-Build Test",
6253
"group": {
6354
"kind": "test",
6455
"isDefault": true

0 commit comments

Comments
 (0)