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:
authorMichael Hutchinson <mhutchinson@novell.com>2010-09-08 03:22:35 +0400
committerMichael Hutchinson <mhutchinson@novell.com>2010-09-08 03:22:35 +0400
commit9f370c678e348718c8006b8a299fe365bd7f1aad (patch)
tree1959a81d4b769dcd69da55c9b9961686e8f97392 /main/src/addins/Deployment
parentabf2e2fd0d390ec058f921f3d51503b46c41d1d6 (diff)
Make Project.RunTarget actually work.
Implement RunTarget on the default project service extension, and handle it using OnRunTarget methods on projects, like Build/Clean etc.
Diffstat (limited to 'main/src/addins/Deployment')
-rw-r--r--main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment/PackagingProject.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment/PackagingProject.cs b/main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment/PackagingProject.cs
index 184b2dee9f..889aada9a8 100644
--- a/main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment/PackagingProject.cs
+++ b/main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment/PackagingProject.cs
@@ -53,6 +53,11 @@ namespace MonoDevelop.Deployment
return null;
}
+ protected override BuildResult OnRunTarget (IProgressMonitor monitor, string target, ConfigurationSelector configuration)
+ {
+ return null;
+ }
+
protected override void OnExecute (IProgressMonitor monitor, ExecutionContext context, ConfigurationSelector configuration)
{
}