Skip to content

Commit

Permalink
fix: Correcting event handler removal
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrandolph committed Jul 6, 2023
1 parent cc58060 commit 8d11d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.UI.RemoteControl.VS/EntryPoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ public void Dispose()
try
{
_dte.Events.BuildEvents.OnBuildDone -= _onBuildDoneHandler;
_dte.Events.BuildEvents.OnBuildProjConfigBegin += _onBuildProjConfigBeginHandler;
_dte.Events.BuildEvents.OnBuildProjConfigBegin -= _onBuildProjConfigBeginHandler;
}
catch (Exception e)
{
Expand Down

0 comments on commit 8d11d44

Please sign in to comment.