Browse Source

Fixed a problem where if a build fails before the unit test is run then the user was prevented from closing SharpDevelop since the code thought a build was still in progress.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.1@2360 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 19 years ago
parent
commit
28a08fba8c
  1. 1
      src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs

1
src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs

@ -324,6 +324,7 @@ namespace ICSharpCode.UnitTesting @@ -324,6 +324,7 @@ namespace ICSharpCode.UnitTesting
if (TaskService.SomethingWentWrong && ErrorListPad.ShowAfterBuild) {
ShowErrorList();
}
ProjectService.RaiseEventEndBuild();
}
}

Loading…
Cancel
Save