Skip to content

Commit c84b614

Browse files
rkeithhilldaviwil
authored andcommitted
Oops forgot to stage this file.
1 parent de6d2a9 commit c84b614

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

examples/.vscode/tasks.json

+1-8
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
// Start PowerShell
3535
"windows": {
36-
"command": "${env:windir}\\sysnative\\WindowsPowerShell\\v1.0\\powershell.exe",
36+
"command": "${env:windir}/System32/WindowsPowerShell/v1.0/powershell.exe",
3737
"args": [ "-NoProfile", "-ExecutionPolicy", "Bypass" ]
3838
},
3939
"linux": {
@@ -45,15 +45,11 @@
4545
"args": [ "-NoProfile" ]
4646
},
4747

48-
// Show the output window always
49-
"showOutput": "always",
50-
5148
// Associate with test task runner
5249
"tasks": [
5350
{
5451
"taskName": "Clean",
5552
"suppressTaskName": true,
56-
"showOutput": "always",
5753
"args": [
5854
"Write-Host 'Invoking PSake...'; Invoke-PSake build.ps1 -taskList Clean;",
5955
"Invoke-Command { Write-Host 'Completed Clean task in task runner.' }"
@@ -63,7 +59,6 @@
6359
"taskName": "Build",
6460
"suppressTaskName": true,
6561
"isBuildCommand": true,
66-
"showOutput": "always",
6762
"args": [
6863
"Write-Host 'Invoking PSake...'; Invoke-PSake build.ps1 -taskList Build;",
6964
"Invoke-Command { Write-Host 'Completed Build task in task runner.' }"
@@ -72,7 +67,6 @@
7267
{
7368
"taskName": "Publish",
7469
"suppressTaskName": true,
75-
"showOutput": "always",
7670
"args": [
7771
"Write-Host 'Invoking PSake...'; Invoke-PSake build.ps1 -taskList Publish;",
7872
"Invoke-Command { Write-Host 'Completed Publish task in task runner.' }"
@@ -82,7 +76,6 @@
8276
"taskName": "Test",
8377
"suppressTaskName": true,
8478
"isTestCommand": true,
85-
"showOutput": "always",
8679
"args": [
8780
"Write-Host 'Invoking Pester...'; $ProgressPreference = 'SilentlyContinue'; Invoke-Pester -PesterOption @{IncludeVSCodeMarker=$true};",
8881
"Invoke-Command { Write-Host 'Completed Test task in task runner.' }"

0 commit comments

Comments
 (0)