-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtasks.json
37 lines (37 loc) · 1.03 KB
/
tasks.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "1. Verify database schema and data",
"type": "shell",
"command": "code",
"args": [
"--goto",
"${workspaceFolder}/scripts/verifyDatabase.sql"
],
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "2. Build SQL Database project",
"type": "shell",
"command": "dotnet build",
"options": {
"cwd": "${workspaceFolder}/database/Library"
}
},
{
"label": "3. Publish SQL Database project",
"type": "shell",
"command": "bash",
"args": [
".devcontainer/sql/postCreateCommand.sh",
"database/Library/bin/Debug"
]
}
]
}