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:
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/ExecutionModeCommandService.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/ExecutionModeCommandService.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/ExecutionModeCommandService.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/ExecutionModeCommandService.cs
index a8a2955615..319e34fb0d 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/ExecutionModeCommandService.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/ExecutionModeCommandService.cs
@@ -61,7 +61,7 @@ namespace MonoDevelop.Ide.Execution
return null;
}
- public static void GenerateExecutionModeCommands (SolutionEntityItem project, CanExecuteDelegate runCheckDelegate, CommandArrayInfo info)
+ public static void GenerateExecutionModeCommands (SolutionItem project, CanExecuteDelegate runCheckDelegate, CommandArrayInfo info)
{
CommandExecutionContext ctx = new CommandExecutionContext (project, runCheckDelegate);
bool supportsParameterization = false;
@@ -262,7 +262,7 @@ namespace MonoDevelop.Ide.Execution
}
}
- internal static void SaveCustomCommand (SolutionEntityItem project, CustomExecutionMode cmode)
+ internal static void SaveCustomCommand (SolutionItem project, CustomExecutionMode cmode)
{
CustomExecutionModes modes = GetCustomExecutionModeList (project, cmode.Scope);
bool found = false;
@@ -286,7 +286,7 @@ namespace MonoDevelop.Ide.Execution
IdeApp.Workspace.SavePreferences ();
}
- static CustomExecutionModes GetCustomExecutionModeList (SolutionEntityItem project, CustomModeScope scope)
+ static CustomExecutionModes GetCustomExecutionModeList (SolutionItem project, CustomModeScope scope)
{
CustomExecutionModes modes;
if (scope == CustomModeScope.Global) {
@@ -309,7 +309,7 @@ namespace MonoDevelop.Ide.Execution
return modes;
}
- internal static void RemoveCustomCommand (SolutionEntityItem project, CustomExecutionMode cmode)
+ internal static void RemoveCustomCommand (SolutionItem project, CustomExecutionMode cmode)
{
CustomExecutionModes modes = GetCustomExecutionModeList (project, cmode.Scope);
modes.Data.Remove (cmode);
@@ -437,7 +437,7 @@ namespace MonoDevelop.Ide.Execution
return Mode.ExecutionHandler.CanExecute (command);
}
- public IProcessAsyncOperation Execute (ExecutionCommand command, IConsole console)
+ public ProcessAsyncOperation Execute (ExecutionCommand command, IConsole console)
{
if (Mode is CustomExecutionMode)
return ((CustomExecutionMode)Mode).Execute (command, console, true, true);
@@ -462,7 +462,7 @@ namespace MonoDevelop.Ide.Execution
return Handler.CanExecute (command);
}
- public IProcessAsyncOperation Execute (ExecutionCommand command, IConsole console)
+ public ProcessAsyncOperation Execute (ExecutionCommand command, IConsole console)
{
return Handler.InternalExecute (Context, ParentMode, command, console);
}