Skip to content
This repository was archived by the owner on Oct 28, 2025. It is now read-only.

Commit 5841659

Browse files
committed
Add default build task (vs code)
1 parent 6a3e287 commit 5841659

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.vscode/tasks.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "build",
8+
"type": "shell",
9+
"command": "./gradlew build",
10+
"group": {
11+
"kind": "build",
12+
"isDefault": true
13+
}
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)