File tree Expand file tree Collapse file tree 1 file changed +24
-36
lines changed Expand file tree Collapse file tree 1 file changed +24
-36
lines changed Original file line number Diff line number Diff line change 44 "version" : " 2.0.0" ,
55 "tasks" : [
66 {
7- // Combined install command to install VSCode Extensions and Mynewt. Both are run concurrently.
8- "label" : " 0️⃣ Install Apache Mynewt" ,
9- "dependsOn" : [
10- " Install Extensions" ,
11- " Install Mynewt"
12- ],
7+ // Install VSCode Extensions. They will be activated upon restarting VSCode.
8+ "label" : " 0️⃣ Install Extensions" ,
9+ "type" : " shell" ,
10+ "windows" : {
11+ "command" : " cmd" ,
12+ "args" : [
13+ " /c" ,
14+ " code --force --install-extension sanaajani.taskrunnercode --install-extension marus25.cortex-debug --install-extension ms-vscode.cpptools --install-extension rust-lang.rust --install-extension bungcip.better-toml && echo Done! Please restart Visual Studio Code to activate the extensions"
15+ ]
16+ },
17+ "osx" : {
18+ "command" : " bash" ,
19+ "args" : [
20+ " -c" , " -l" ,
21+ " code --force --install-extension sanaajani.taskrunnercode --install-extension marus25.cortex-debug --install-extension ms-vscode.cpptools --install-extension rust-lang.rust --install-extension bungcip.better-toml "
22+ ]
23+ },
24+ "linux" : {
25+ "command" : " bash" ,
26+ "args" : [
27+ " -c" , " -l" ,
28+ " code --force --install-extension sanaajani.taskrunnercode --install-extension marus25.cortex-debug --install-extension ms-vscode.cpptools --install-extension rust-lang.rust --install-extension bungcip.better-toml "
29+ ]
30+ },
1331 "problemMatcher" : [],
1432 "presentation" : {
1533 "clear" : true
277295 "clear" : true
278296 }
279297 },
280- {
281- // Install VSCode Extensions. They will be activated upon restarting VSCode.
282- "label" : " Install Extensions" ,
283- "type" : " shell" ,
284- "windows" : {
285- "command" : " cmd" ,
286- "args" : [
287- " /c" ,
288- " code --force --install-extension sanaajani.taskrunnercode --install-extension marus25.cortex-debug --install-extension ms-vscode.cpptools --install-extension rust-lang.rust --install-extension bungcip.better-toml && echo Done! Please restart Visual Studio Code to activate the extensions"
289- ]
290- },
291- "osx" : {
292- "command" : " bash" ,
293- "args" : [
294- " -c" , " -l" ,
295- " code --force --install-extension sanaajani.taskrunnercode --install-extension marus25.cortex-debug --install-extension ms-vscode.cpptools --install-extension rust-lang.rust --install-extension bungcip.better-toml "
296- ]
297- },
298- "linux" : {
299- "command" : " bash" ,
300- "args" : [
301- " -c" , " -l" ,
302- " code --force --install-extension sanaajani.taskrunnercode --install-extension marus25.cortex-debug --install-extension ms-vscode.cpptools --install-extension rust-lang.rust --install-extension bungcip.better-toml "
303- ]
304- },
305- "problemMatcher" : [],
306- "presentation" : {
307- "clear" : true
308- }
309- },
310298 {
311299 // Install Mynewt source, build tools, sample.
312300 "label" : " Install Mynewt" ,
You can’t perform that action at this time.
0 commit comments