Skip to content

Commit e752aa0

Browse files
authored
Merge branch 'master' into security-alert-CVE-2023-42282
2 parents 2d4951b + 94c20f1 commit e752aa0

File tree

11 files changed

+360
-96
lines changed

11 files changed

+360
-96
lines changed

.vscode/tasks.json

Lines changed: 42 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
{
2-
// See https://go.microsoft.com/fwlink/?LinkId=733558
3-
// for the documentation about the tasks.json format
42
"version": "2.0.0",
53
"tasks": [
64
{
@@ -30,41 +28,69 @@
3028
},
3129
{
3230
"label": "Debug: Excel Desktop",
33-
"type": "npm",
34-
"script": "start:desktop -- --app excel",
31+
"type": "shell",
32+
"command": "npm",
33+
"args": [
34+
"run",
35+
"start:desktop",
36+
"--",
37+
"--app",
38+
"excel",
39+
],
3540
"presentation": {
3641
"clear": true,
37-
"panel": "dedicated",
42+
"panel": "dedicated"
3843
},
3944
"problemMatcher": []
4045
},
4146
{
4247
"label": "Debug: Outlook Desktop",
43-
"type": "npm",
44-
"script": "start:desktop -- --app outlook",
48+
"type": "shell",
49+
"command": "npm",
50+
"args": [
51+
"run",
52+
"start:desktop",
53+
"--",
54+
"--app",
55+
"outlook",
56+
],
4557
"presentation": {
4658
"clear": true,
47-
"panel": "dedicated",
59+
"panel": "dedicated"
4860
},
4961
"problemMatcher": []
5062
},
5163
{
5264
"label": "Debug: PowerPoint Desktop",
53-
"type": "npm",
54-
"script": "start:desktop -- --app powerpoint",
65+
"type": "shell",
66+
"command": "npm",
67+
"args": [
68+
"run",
69+
"start:desktop",
70+
"--",
71+
"--app",
72+
"powerpoint",
73+
],
5574
"presentation": {
5675
"clear": true,
57-
"panel": "dedicated",
76+
"panel": "dedicated"
5877
},
5978
"problemMatcher": []
6079
},
6180
{
6281
"label": "Debug: Word Desktop",
63-
"type": "npm",
64-
"script": "start:desktop -- --app word",
82+
"type": "shell",
83+
"command": "npm",
84+
"args": [
85+
"run",
86+
"start:desktop",
87+
"--",
88+
"--app",
89+
"word",
90+
],
6591
"presentation": {
6692
"clear": true,
67-
"panel": "dedicated",
93+
"panel": "dedicated"
6894
},
6995
"problemMatcher": []
7096
},
@@ -125,6 +151,6 @@
125151
"panel": "dedicated"
126152
},
127153
"problemMatcher": []
128-
},
154+
}
129155
]
130-
}
156+
}

assets/color.png

1.04 KB
Loading

assets/outline.png

249 Bytes
Loading

0 commit comments

Comments
 (0)