file-samples/.vscode/tasks.json
2022-06-30 12:25:36 +01:00

33 lines
958 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "basex server",
"type": "shell",
"command": "basexserver",
"isBackground": true,
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
},
"runOptions": {"runOn": "folderOpen"}
},
{
"type": "xslt",
"label": "xslt: Saxon Transform (New)",
"saxonJar": "${config:XSLT.tasks.saxonJar}",
"xsltFile": "${file}",
"xmlSource": "${file}",
"resultPath": "${workspaceFolder}/xslt-out/result1.xml",
"group": {
"kind": "build"
},
"problemMatcher": [
"$saxon-xslt"
]
}
]
}