File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "type" : " PowerShell" ,
9
+ "request" : " launch" ,
10
+ "name" : " PowerShell Launch Current File" ,
11
+ "script" : " ${file}" ,
12
+ "args" : [],
13
+ "cwd" : " ${file}"
14
+ },
15
+ {
16
+ "type" : " PowerShell" ,
17
+ "request" : " launch" ,
18
+ "name" : " PowerShell Launch Current File in Temporary Console" ,
19
+ "script" : " ${file}" ,
20
+ "args" : [],
21
+ "cwd" : " ${file}" ,
22
+ "createTemporaryIntegratedConsole" : true
23
+ },
24
+ {
25
+ "type" : " PowerShell" ,
26
+ "request" : " launch" ,
27
+ "name" : " PowerShell Launch Current File w/Args Prompt" ,
28
+ "script" : " ${file}" ,
29
+ "args" : [
30
+ " ${command:SpecifyScriptArgs}"
31
+ ],
32
+ "cwd" : " ${file}"
33
+ },
34
+ {
35
+ "type" : " PowerShell" ,
36
+ "request" : " attach" ,
37
+ "name" : " PowerShell Attach to Host Process" ,
38
+ "processId" : " ${command:PickPSHostProcess}" ,
39
+ "runspaceId" : 1
40
+ },
41
+ {
42
+ "type" : " PowerShell" ,
43
+ "request" : " launch" ,
44
+ "name" : " PowerShell Interactive Session" ,
45
+ "cwd" : " "
46
+ }
47
+ ]
48
+ }
You can’t perform that action at this time.
0 commit comments