We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cadb51 commit 5f89168Copy full SHA for 5f89168
3 files changed
.vscode/launch.json
@@ -162,7 +162,8 @@
162
"request": "launch",
163
"name": "Launch VS Code",
164
"windows": {
165
- "runtimeExecutable": "${workspaceFolder}/scripts/code.bat"
+ "runtimeExecutable": "C:\\Windows\\System32\\cscript.exe",
166
+ "runtimeArgs": ["${workspaceFolder}/scripts/code.vbs"]
167
},
168
"osx": {
169
"runtimeExecutable": "${workspaceFolder}/scripts/code.sh"
build/gulpfile.hygiene.js
@@ -103,6 +103,7 @@ const copyrightFilter = [
103
'!**/*.template',
104
'!**/*.md',
105
'!**/*.bat',
106
+ '!**/*.vbs',
107
'!**/*.cmd',
108
'!**/*.ico',
109
'!**/*.icns',
scripts/code.vbs
@@ -0,0 +1,3 @@
1
+Set WshShell = CreateObject("WScript.Shell")
2
+WshShell.Run chr(34) & "code.bat" & Chr(34), 0
3
+Set WshShell = Nothing
0 commit comments