23 lines
557 B
JSON
23 lines
557 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "prepareClientRun",
|
|
"type": "process",
|
|
"command": "${workspaceFolder}/.vscode/prepareClientRun.sh",
|
|
"windows": {
|
|
"command": "${workspaceFolder}\\.vscode\\prepareClientRun.bat"
|
|
},
|
|
"linux": {
|
|
"command": "${workspaceFolder}/.vscode/prepareClientRun.sh"
|
|
},
|
|
"osx": {
|
|
"command": "${workspaceFolder}/.vscode/prepareClientRun.sh"
|
|
},
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |