|
49 | 49 | { |
50 | 50 | "taskName": "Clean", |
51 | 51 | "suppressTaskName": true, |
| 52 | + "showOutput": "always", |
52 | 53 | "args": [ |
53 | 54 | "Write-Host 'Invoking PSake...'; Invoke-PSake build.ps1 -taskList Clean;", |
54 | | - "Invoke-Command { Write-Host \"Completed Clean task in task runner.\" }" |
| 55 | + "Invoke-Command { Write-Host 'Completed Clean task in task runner.' }" |
55 | 56 | ] |
56 | 57 | }, |
57 | 58 | { |
58 | 59 | "taskName": "Build", |
59 | 60 | "suppressTaskName": true, |
60 | 61 | "isBuildCommand": true, |
| 62 | + "showOutput": "always", |
61 | 63 | "args": [ |
62 | 64 | "Write-Host 'Invoking PSake...'; Invoke-PSake build.ps1 -taskList Build;", |
63 | | - "Invoke-Command { Write-Host \"Completed Build task in task runner.\" }" |
| 65 | + "Invoke-Command { Write-Host 'Completed Build task in task runner.' }" |
64 | 66 | ] |
65 | 67 | }, |
66 | 68 | { |
67 | 69 | "taskName": "Publish", |
68 | 70 | "suppressTaskName": true, |
| 71 | + "showOutput": "always", |
69 | 72 | "args": [ |
70 | 73 | "Write-Host 'Invoking PSake...'; Invoke-PSake build.ps1 -taskList Publish;", |
71 | | - "Invoke-Command { Write-Host \"Completed Publish task in task runner.\" }" |
| 74 | + "Invoke-Command { Write-Host 'Completed Publish task in task runner.' }" |
72 | 75 | ] |
73 | 76 | }, |
74 | 77 | { |
75 | 78 | "taskName": "Test", |
76 | 79 | "suppressTaskName": true, |
77 | 80 | "isTestCommand": true, |
| 81 | + "showOutput": "always", |
78 | 82 | "args": [ |
79 | 83 | "Write-Host 'Invoking Pester...'; Invoke-Pester -PesterOption @{IncludeVSCodeMarker=$true};", |
80 | | - "Invoke-Command { Write-Host \"Completed Test task in task runner.\" }" |
| 84 | + "Invoke-Command { Write-Host 'Completed Test task in task runner.' }" |
81 | 85 | ], |
82 | 86 | "problemMatcher": [ |
83 | 87 | { |
|
0 commit comments