Skip to content

Commit c10c792

Browse files
authored
Get VSCode to stop prompting about output options for tasks (PowerShell#1066)
1 parent 85b967a commit c10c792

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.vscode/tasks.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,20 @@
1818
{
1919
"taskName": "Install",
2020
"suppressTaskName": true,
21-
"args": [ "Invoke-Build", "Restore" ]
21+
"args": [ "Invoke-Build", "Restore" ],
22+
"problemMatcher": []
2223
},
2324
{
2425
"taskName": "CleanAll",
2526
"suppressTaskName": true,
26-
"args": [ "Invoke-Build", "CleanAll" ]
27+
"args": [ "Invoke-Build", "CleanAll" ],
28+
"problemMatcher": []
2729
},
2830
{
2931
"taskName": "Clean",
3032
"suppressTaskName": true,
31-
"args": [ "Invoke-Build", "Clean" ]
33+
"args": [ "Invoke-Build", "Clean" ],
34+
"problemMatcher": []
3235
},
3336
{
3437
"taskName": "BuildAll",

0 commit comments

Comments
 (0)