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@novell.com>2010-09-14 17:09:26 +0400
committerLluis Sanchez <lluis@novell.com>2010-09-14 17:09:39 +0400
commitba0112daabd7852debe64f3c3da9d3b76c7fa6b2 (patch)
tree731573af68f21ff43339327a85df34b79164e004 /main/src/addins/Deployment
parent4106d00a8310c91873f44f607cbe2990fcac02cd (diff)
* NUnitAssemblyGroupProject.cs:
* UnknownSolutionItem.cs: * TranslationProject.cs: * PackagingProject.cs: Remove unrequired override. * SolutionFolder.cs: * CompiledAssemblyProject.cs: Track changes in method visibility. * DotNetProject.cs: Override RunTarget is not overridable anymore. The method to override is OnRunTarget. * Project.cs: Remove DoRunTarget, since SolutionItem already delegates the execution of unknown targets to the item handler. If custom handling is required, the method to override is OnRunTarget. * ProjectService.cs: Remove Clean and Build overrides. Those targets are now executed by the solution item through OnRunTarget. * SolutionEntityItem.cs: Handle the execution of Build and Clean custom commands. * SolutionItem.cs: Added default implementation of OnRunTarget, which executes the OnClean and OnBuild overridables. Changed visibility of OnClean and OnBuild since they don't have to be called from outside the class anymore.
Diffstat (limited to 'main/src/addins/Deployment')
-rw-r--r--main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment/PackagingProject.cs5
1 files changed, 0 insertions, 5 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 889aada9a8..184b2dee9f 100644
--- a/main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment/PackagingProject.cs
+++ b/main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment/PackagingProject.cs
@@ -53,11 +53,6 @@ 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)
{
}