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/CommandExecutionContext.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/CommandExecutionContext.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/CommandExecutionContext.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/CommandExecutionContext.cs
index fe5e859e91..b02580b4a1 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/CommandExecutionContext.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Execution/CommandExecutionContext.cs
@@ -33,22 +33,22 @@ namespace MonoDevelop.Ide.Execution
public class CommandExecutionContext
{
CanExecuteDelegate runCheckDelegate;
- SolutionEntityItem project;
+ SolutionItem project;
ExecutionCommand cmd;
- public CommandExecutionContext (SolutionEntityItem project, CanExecuteDelegate runCheckDelegate)
+ public CommandExecutionContext (SolutionItem project, CanExecuteDelegate runCheckDelegate)
{
this.project = project;
this.runCheckDelegate = runCheckDelegate;
}
- public CommandExecutionContext (SolutionEntityItem project, ExecutionCommand cmd)
+ public CommandExecutionContext (SolutionItem project, ExecutionCommand cmd)
{
this.project = project;
this.cmd = cmd;
}
- public SolutionEntityItem Project {
+ public SolutionItem Project {
get { return project; }
}
@@ -81,7 +81,7 @@ namespace MonoDevelop.Ide.Execution
return true;
}
- public IProcessAsyncOperation Execute (MonoDevelop.Core.Execution.ExecutionCommand command, MonoDevelop.Core.Execution.IConsole console)
+ public ProcessAsyncOperation Execute (MonoDevelop.Core.Execution.ExecutionCommand command, MonoDevelop.Core.Execution.IConsole console)
{
throw new InvalidOperationException ();
}