|
5 | 5 | "label": "cmake-configure", |
6 | 6 | "type": "shell", |
7 | 7 | "command": "cmake", |
8 | | - "args": [ |
9 | | - "-B", |
10 | | - "build", |
11 | | - "-DCMAKE_BUILD_TYPE=Debug" |
12 | | - ], |
| 8 | + "args": ["-B", "build", "-DCMAKE_BUILD_TYPE=Debug"], |
13 | 9 | "group": "build", |
14 | 10 | "presentation": { |
15 | 11 | "echo": true, |
|
28 | 24 | "label": "cmake-process", |
29 | 25 | "type": "shell", |
30 | 26 | "command": "cmake", |
31 | | - "args": [ |
32 | | - "--build", |
33 | | - "build", |
34 | | - "--target", |
35 | | - "process" |
36 | | - ], |
| 27 | + "args": ["--build", "build", "--target", "process"], |
37 | 28 | "group": "build", |
38 | 29 | "dependsOn": "cmake-configure", |
39 | 30 | "presentation": { |
|
53 | 44 | "label": "cmake-build", |
54 | 45 | "type": "shell", |
55 | 46 | "command": "cmake", |
56 | | - "args": [ |
57 | | - "--build", |
58 | | - "build", |
59 | | - "--target", |
60 | | - "build" |
61 | | - ], |
| 47 | + "args": ["--build", "build", "--target", "build"], |
62 | 48 | "group": { |
63 | 49 | "kind": "build", |
64 | 50 | "isDefault": true |
|
75 | 61 | "options": { |
76 | 62 | "cwd": "${workspaceFolder}" |
77 | 63 | }, |
78 | | - "problemMatcher": [ |
79 | | - "$msCompile" |
80 | | - ] |
| 64 | + "problemMatcher": ["$msCompile"] |
81 | 65 | }, |
82 | 66 | { |
83 | 67 | "label": "cmake-test", |
84 | 68 | "type": "shell", |
85 | 69 | "command": "cmake", |
86 | | - "args": [ |
87 | | - "--build", |
88 | | - "build", |
89 | | - "--target", |
90 | | - "test" |
91 | | - ], |
| 70 | + "args": ["--build", "build", "--target", "test"], |
92 | 71 | "group": { |
93 | 72 | "kind": "test", |
94 | 73 | "isDefault": true |
|
111 | 90 | "label": "cmake-format", |
112 | 91 | "type": "shell", |
113 | 92 | "command": "cmake", |
114 | | - "args": [ |
115 | | - "--build", |
116 | | - "build", |
117 | | - "--target", |
118 | | - "format" |
119 | | - ], |
| 93 | + "args": ["--build", "build", "--target", "format"], |
120 | 94 | "group": "build", |
121 | 95 | "presentation": { |
122 | 96 | "echo": true, |
|
135 | 109 | "label": "cmake-doc", |
136 | 110 | "type": "shell", |
137 | 111 | "command": "cmake", |
138 | | - "args": [ |
139 | | - "--build", |
140 | | - "build", |
141 | | - "--target", |
142 | | - "doc" |
143 | | - ], |
| 112 | + "args": ["--build", "build", "--target", "doc"], |
144 | 113 | "group": "build", |
145 | 114 | "dependsOn": "cmake-build", |
146 | 115 | "presentation": { |
|
160 | 129 | "label": "cmake-publish", |
161 | 130 | "type": "shell", |
162 | 131 | "command": "cmake", |
163 | | - "args": [ |
164 | | - "--build", |
165 | | - "build", |
166 | | - "--target", |
167 | | - "publish" |
168 | | - ], |
| 132 | + "args": ["--build", "build", "--target", "publish"], |
169 | 133 | "group": "build", |
170 | 134 | "dependsOn": "cmake-build", |
171 | 135 | "presentation": { |
|
185 | 149 | "label": "cmake-clean", |
186 | 150 | "type": "shell", |
187 | 151 | "command": "cmake", |
188 | | - "args": [ |
189 | | - "--build", |
190 | | - "build", |
191 | | - "--target", |
192 | | - "clean-all" |
193 | | - ], |
| 152 | + "args": ["--build", "build", "--target", "clean-all"], |
194 | 153 | "group": "build", |
195 | 154 | "presentation": { |
196 | 155 | "echo": true, |
|
209 | 168 | "label": "dotnet-restore", |
210 | 169 | "type": "shell", |
211 | 170 | "command": "dotnet", |
212 | | - "args": [ |
213 | | - "restore", |
214 | | - "${workspaceFolder}/OpenLanguage.sln" |
215 | | - ], |
| 171 | + "args": ["restore", "${workspaceFolder}/OpenLanguage.sln"], |
216 | 172 | "group": "build", |
217 | 173 | "presentation": { |
218 | 174 | "echo": true, |
|
251 | 207 | "options": { |
252 | 208 | "cwd": "${workspaceFolder}" |
253 | 209 | }, |
254 | | - "problemMatcher": [ |
255 | | - "$msCompile" |
256 | | - ] |
| 210 | + "problemMatcher": ["$msCompile"] |
257 | 211 | }, |
258 | 212 | { |
259 | 213 | "label": "dotnet-test", |
|
287 | 241 | "label": "format-csharpier", |
288 | 242 | "type": "shell", |
289 | 243 | "command": "dotnet", |
290 | | - "args": [ |
291 | | - "csharpier", |
292 | | - "${workspaceFolder}" |
293 | | - ], |
| 244 | + "args": ["csharpier", "${workspaceFolder}"], |
294 | 245 | "group": "build", |
295 | 246 | "presentation": { |
296 | 247 | "echo": true, |
|
309 | 260 | "label": "install-git-hooks", |
310 | 261 | "type": "shell", |
311 | 262 | "command": "cmake", |
312 | | - "args": [ |
313 | | - "--build", |
314 | | - "build", |
315 | | - "--target", |
316 | | - "install-hooks" |
317 | | - ], |
| 263 | + "args": ["--build", "build", "--target", "install-hooks"], |
318 | 264 | "group": "build", |
319 | 265 | "dependsOn": "cmake-configure", |
320 | 266 | "presentation": { |
|
0 commit comments