Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f0b5b2e

Browse files
authoredFeb 28, 2022
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

Lines changed: 2 additions & 2 deletions
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)
Please sign in to comment.