OpenSAP course officesupplies

This commit is contained in:
Harini Gunabalan
2020-02-27 14:57:46 +01:00
parent 06755978b2
commit a82e7a9c9f
136 changed files with 1660 additions and 2647 deletions

View File

@@ -0,0 +1,23 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "cds watch",
"command": ["cds", "watch"],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"type": "shell",
"label": "cds run",
"command": ["cds", "run", "--with-mocks", "--in-memory?"],
"problemMatcher": []
}
]
}