File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
src/PowerShellEditorServices/Debugging Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -107,12 +107,14 @@ static internal StackFrameDetails Create(
107107 string scriptPath = ( callStackFrameObject . Properties [ "ScriptName" ] . Value as string ) ?? NoFileScriptPath ;
108108 int startLineNumber = ( int ) ( callStackFrameObject . Properties [ "ScriptLineNumber" ] . Value ?? 0 ) ;
109109
110- if ( workspaceRootPath != null &&
111- invocationInfo != null &&
112- ! scriptPath . StartsWith ( workspaceRootPath , StringComparison . OrdinalIgnoreCase ) )
113- {
114- isExternal = true ;
115- }
110+ // TODO: RKH 2019-03-07 Temporarily disable "external" code until I have a chance to add
111+ // settings to control this feature.
112+ //if (workspaceRootPath != null &&
113+ // invocationInfo != null &&
114+ // !scriptPath.StartsWith(workspaceRootPath, StringComparison.OrdinalIgnoreCase))
115+ //{
116+ // isExternal = true;
117+ //}
116118
117119 return new StackFrameDetails
118120 {
You can’t perform that action at this time.
0 commit comments