Skip to content

Commit 1353a7f

Browse files
committed
Remove unneeded launch configuration
Just invoke the clean task first if you want to rebuild PowerShellEditorServices. Also put `problemMatcher` back into the tasks so as to stop Visual Studio Code from asking the user which to use.
1 parent 03f930d commit 1353a7f

File tree

2 files changed

+7
-17
lines changed

2 files changed

+7
-17
lines changed

.vscode/launch.json

-15
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,6 @@
1616
],
1717
"preLaunchTask": "Build"
1818
},
19-
{
20-
"name": "Launch Extension (Build client only)",
21-
"type": "extensionHost",
22-
"request": "launch",
23-
"runtimeExecutable": "${execPath}",
24-
"args": [
25-
"--extensionDevelopmentPath=${workspaceFolder}"
26-
],
27-
"stopOnEntry": false,
28-
"sourceMaps": true,
29-
"outFiles": [
30-
"${workspaceFolder}/out/src/**/*.js"
31-
],
32-
"preLaunchTask": "Build"
33-
},
3419
{
3520
"name": "Launch Extension Tests",
3621
"type": "extensionHost",

.vscode/tasks.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -40,28 +40,33 @@
4040
"label": "Restore",
4141
"type": "shell",
4242
"command": "Invoke-Build Restore",
43+
"problemMatcher": []
4344
},
4445
{
4546
"label": "Clean",
4647
"type": "shell",
4748
"command": "Invoke-Build Clean",
49+
"problemMatcher": []
4850
},
4951
{
5052
"label": "Build",
5153
"type": "shell",
5254
"command": "Invoke-Build Build",
53-
"group": "build",
55+
"problemMatcher": [],
56+
"group": "build"
5457
},
5558
{
5659
"label": "Test",
5760
"type": "shell",
5861
"command": "Invoke-Build Test",
59-
"group": "test",
62+
"problemMatcher": [],
63+
"group": "test"
6064
},
6165
{
6266
"label": "Package",
6367
"type": "shell",
6468
"command": "Invoke-Build Package",
69+
"problemMatcher": [],
6570
"group": "build"
6671
}
6772
]

0 commit comments

Comments
 (0)