Skip to content

Commit c5469fd

Browse files
committed
Update tasks.json files for 64-bit VS Code
This change modifies the path used for PowerShell on Windows due to the fact that 64-bit VS Code has been released (and is now being promoted as the primary build). We're only pointing to the System32 path for now because VS Code doesn't provide a way to specify a different path in the 32-bit build.
1 parent c84b614 commit c5469fd

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

.vscode/tasks.json

+17-5
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,40 @@
1818
{
1919
"taskName": "Install",
2020
"suppressTaskName": true,
21-
"args": [ "Invoke-Build Restore" ]
21+
"args": [
22+
"Invoke-Build Restore"
23+
]
2224
},
2325
{
2426
"taskName": "CleanAll",
2527
"suppressTaskName": true,
26-
"args": [ "Invoke-Build CleanAll" ]
28+
"args": [
29+
"Invoke-Build CleanAll"
30+
]
2731
},
2832
{
2933
"taskName": "Clean",
3034
"suppressTaskName": true,
31-
"args": [ "Invoke-Build Clean" ]
35+
"args": [
36+
"Invoke-Build Clean"
37+
]
3238
},
3339
{
3440
"taskName": "BuildAll",
3541
"suppressTaskName": true,
3642
"isBuildCommand": true,
37-
"args": [ "Invoke-Build BuildAll" ]
43+
"args": [
44+
"Invoke-Build BuildAll"
45+
],
46+
"problemMatcher": []
3847
},
3948
{
4049
"taskName": "Build",
4150
"suppressTaskName": true,
42-
"args": [ "Invoke-Build Build" ]
51+
"args": [
52+
"Invoke-Build Build"
53+
],
54+
"problemMatcher": []
4355
}
4456
]
4557
}

0 commit comments

Comments
 (0)