You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+14
Original file line number
Diff line number
Diff line change
@@ -909,6 +909,20 @@
909
909
"default": false,
910
910
"markdownDescription": "Creates a temporary PowerShell Extension Terminal for each debugging session. This is useful for debugging PowerShell classes and binary modules."
911
911
},
912
+
"powershell.debugging.executeMode": {
913
+
"type": "string",
914
+
"enum": [
915
+
"DotSource",
916
+
"Call"
917
+
],
918
+
"default": "DotSource",
919
+
"markdownEnumDescriptions": [
920
+
"Use the Dot-Source operator to launch the script (e.g.: . 'C:\\Data\\MyScript.ps1')",
921
+
"Use the Call operator to launch the script (e.g.: & 'C:\\Data\\MyScript.ps1')"
922
+
],
923
+
"markdownDescription": "Sets the operator used to launch scripts."
0 commit comments