File tree 1 file changed +8
-6
lines changed
src/PowerShellEditorServices/Debugging
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(
107
107
string scriptPath = ( callStackFrameObject . Properties [ "ScriptName" ] . Value as string ) ?? NoFileScriptPath ;
108
108
int startLineNumber = ( int ) ( callStackFrameObject . Properties [ "ScriptLineNumber" ] . Value ?? 0 ) ;
109
109
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
+ //}
116
118
117
119
return new StackFrameDetails
118
120
{
You can’t perform that action at this time.
0 commit comments