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 447f967 commit 6d2856aCopy full SHA for 6d2856a
.vscode/tasks.json
@@ -2,18 +2,20 @@
2
"version": "0.1.0",
3
4
"windows": {
5
- "command": "${env.windir}\\sysnative\\windowspowershell\\v1.0\\PowerShell.exe"
+ "command": "${env.windir}\\sysnative\\windowspowershell\\v1.0\\PowerShell.exe",
6
+ "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass" ]
7
},
8
"linux": {
- "command": "/usr/bin/powershell"
9
+ "command": "/usr/bin/powershell",
10
+ "args": [ "-NoProfile" ]
11
12
"osx": {
- "command": "/usr/local/bin/powershell"
13
+ "command": "/usr/local/bin/powershell",
14
15
16
17
"isShellCommand": true,
18
"showOutput": "always",
- "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass" ],
19
20
// Associate with test task runner
21
"tasks": [
0 commit comments