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 377126c commit 0015a07Copy full SHA for 0015a07
.vscode/tasks.json
@@ -0,0 +1,31 @@
1
+{
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "label": "swift build",
6
+ "type": "shell",
7
+ "command": "swift build",
8
+ "problemMatcher": [],
9
+ "group": {
10
+ "kind": "build",
11
+ "isDefault": true
12
+ }
13
+ },
14
15
+ "label": "swift test",
16
17
+ "command": "./run_tests",
18
19
20
+ "kind": "test",
21
22
23
24
25
+ "label": "swift clean",
26
27
+ "command": "swift package clean",
28
29
30
+ ]
31
+}
0 commit comments