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
Updated to address @daviwil suggestion to execute cd separately.
Also found two launch params that have been renamed (looking at 0.10.7-insiders mono-debug package.json file). Although I don't think runtimeArgs really applies to PowerShell debugging. The "runtimeExecutable" is the debug host and by the time the launch message comes along, it is already started.
Copy file name to clipboardExpand all lines: src/PowerShellEditorServices.Protocol/DebugAdapter/LaunchRequest.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,10 +33,10 @@ public class LaunchRequestArguments
33
33
publicstringRuntimeExecutable{get;set;}
34
34
35
35
// /** Optional arguments passed to the runtime executable. */
36
-
publicstring[]RuntimeArguments{get;set;}
36
+
publicstring[]RuntimeArgs{get;set;}
37
37
38
38
// /** Optional environment variables to pass to the debuggee. The string valued properties of the 'environmentVariables' are used as key/value pairs. */
0 commit comments