PSRule-vscode/.vscode/tasks.json

36 строки
909 B
JSON

// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "Invoke-Build Build",
"group": "build",
"presentation": {
"focus": false,
"panel": "dedicated",
"clear": true
},
"problemMatcher": []
},
{
"label": "Install",
"type": "shell",
"command": "Invoke-Build Install",
"presentation": {
"focus": false,
"panel": "dedicated",
"clear": true
},
"problemMatcher": []
},
{
"type": "npm",
"script": "compile",
"problemMatcher": []
}
]
}