Skip to content

Commit f0b5b2e

Browse files
Redirect PSHost.Notify*Application methods (#1732)
Fixes #1639
1 parent 513d073 commit f0b5b2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PowerShellEditorServices/Services/PowerShell/Host/PsesInternalHost.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,12 +168,12 @@ public override void ExitNestedPrompt()
168168

169169
public override void NotifyBeginApplication()
170170
{
171-
// TODO: Work out what to do here
171+
_hostInfo.PSHost.NotifyBeginApplication();
172172
}
173173

174174
public override void NotifyEndApplication()
175175
{
176-
// TODO: Work out what to do here
176+
_hostInfo.PSHost.NotifyEndApplication();
177177
}
178178

179179
public void PopRunspace()

0 commit comments

Comments
 (0)