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
outputChannel.appendLine(localize("debugger.noDebug.requestType.not.supported","Run Without Debugging is only supported for launch configurations."));
79
+
}
80
+
if(configuration.pipeTransport){
81
+
outputChannel.appendLine(localize("debugger.noDebug.pipeTransport.not.supported","Run Without Debugging is not supported for configurations with 'pipeTransport' set."));
82
+
}
83
+
if(configuration.debugServerPath){
84
+
outputChannel.appendLine(localize("debugger.noDebug.debugServerPath.not.supported","Run Without Debugging is not supported for configurations with 'debugServerPath' set."));
85
+
}
86
+
if(configuration.miDebuggerServerAddress){
87
+
outputChannel.appendLine(localize("debugger.noDebug.miDebuggerServerAddress.not.supported","Run Without Debugging is not supported for configurations with 'miDebuggerServerAddress' set."));
88
+
}
89
+
if(configuration.coreDumpPath){
90
+
outputChannel.appendLine(localize("debugger.noDebug.coreDumpPath.not.supported","Run Without Debugging is not supported for configurations with 'coreDumpPath' set."));
0 commit comments