Minor change in how the commands are executed.
This commit is contained in:
parent
c8715e3dbb
commit
fd41eff3a0
10
.vscode/tasks.json
vendored
10
.vscode/tasks.json
vendored
@ -25,16 +25,19 @@
|
||||
"dependsOn": ["package"],
|
||||
"label": "update test server",
|
||||
"type": "shell",
|
||||
"args": ["-ExecutionPolicy", "Bypass", "-File", "./load-latest-build.ps1"],
|
||||
"options": {"cwd": "${workspaceFolder}/test-server/"},
|
||||
"command": "powershell -ExecutionPolicy Bypass -File ./load-latest-build.ps1",
|
||||
"command": "powershell",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"dependsOn": ["update test server"],
|
||||
"label": "start test server",
|
||||
"type": "shell",
|
||||
"runOptions": {"instanceLimit": 1},
|
||||
"args": ["-ExecutionPolicy", "Bypass", "-File", "./start-debug-server-process.ps1"],
|
||||
"options": {"cwd": "${workspaceFolder}/test-server/"},
|
||||
"command": "powershell -ExecutionPolicy Bypass -File ./start-debug-server-process.ps1",
|
||||
"command": "powershell",
|
||||
"problemMatcher": [],
|
||||
"group": "test",
|
||||
"presentation": {
|
||||
@ -49,8 +52,9 @@
|
||||
{
|
||||
"label": "stop test server",
|
||||
"type": "shell",
|
||||
"args": ["-ExecutionPolicy", "Bypass", "-File", "./end-debug-server-process.ps1"],
|
||||
"options": {"cwd": "${workspaceFolder}/test-server/"},
|
||||
"command": "powershell -ExecutionPolicy Bypass -File ./end-debug-server-process.ps1",
|
||||
"command": "powershell",
|
||||
"problemMatcher": [],
|
||||
"group": "test",
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user