We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b3d334 commit 2c887dfCopy full SHA for 2c887df
.vscode/tasks.json
@@ -0,0 +1,33 @@
1
+{
2
+ "version": "2.0.0",
3
+ "presentation": {
4
+ "reveal": "always",
5
+ "panel": "dedicated"
6
+ },
7
+ "tasks": [
8
+ {
9
+ "type": "shell",
10
+ "label": "CODAL build",
11
+ "command": "python build.py",
12
+ "windows": {
13
+ "command": "py build.py"
14
15
+ "group": {
16
+ "kind": "build",
17
+ "isDefault": true
18
+ }
19
20
21
22
+ "label": "CODAL clean build",
23
+ "command": "python build.py --clean",
24
25
+ "command": "py build.py --clean"
26
27
28
29
+ "isDefault": false
30
31
32
+ ]
33
+}
0 commit comments