Skip to content

Commit 5746574

Browse files
Fixes
1 parent 0c154c5 commit 5746574

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

DevProxy.Plugins/Mocking/MockStdioResponsePlugin.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,15 @@ public class MockStdioResponsePlugin(
6464

6565
public override string Name => nameof(MockStdioResponsePlugin);
6666

67+
protected override void Dispose(bool disposing)
68+
{
69+
if (disposing)
70+
{
71+
_loader?.Dispose();
72+
}
73+
base.Dispose(disposing);
74+
}
75+
6776
public override async Task InitializeAsync(InitArgs e, CancellationToken cancellationToken)
6877
{
6978
ArgumentNullException.ThrowIfNull(e);

0 commit comments

Comments
 (0)