Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@xamarin.com>2015-03-26 18:40:06 +0300
committerLluis Sanchez <lluis@xamarin.com>2015-03-26 19:02:37 +0300
commit3b323eb992f26a86c447c12bc6029615ec6e2841 (patch)
tree2aaed3c433450f0391b9d9bafcd5031a4e366784
parent541c06a4f6c95383333375d56fd6c23ce48cb916 (diff)
[Core] Fix fast-build-check issue
Mark a project as dirty for fast-build-check when it is cleaned. Fixes bug #28449
-rw-r--r--main/src/core/MonoDevelop.Core/MonoDevelop.Projects/SolutionEntityItem.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/SolutionEntityItem.cs b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/SolutionEntityItem.cs
index 692774e067..12a6eb76c1 100644
--- a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/SolutionEntityItem.cs
+++ b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/SolutionEntityItem.cs
@@ -355,6 +355,7 @@ namespace MonoDevelop.Projects
return new BuildResult ();
}
} else if (target == ProjectService.CleanTarget) {
+ SetFastBuildCheckDirty ();
SolutionItemConfiguration config = GetConfiguration (configuration) as SolutionItemConfiguration;
if (config != null && config.CustomCommands.HasCommands (CustomCommandType.Clean)) {
config.CustomCommands.ExecuteCommand (monitor, this, CustomCommandType.Clean, configuration);