[Monodevelop-patches-list] r2161 - in trunk/MonoDevelop/Core/src/MonoDevelop.Base: . Internal/Project/Project

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Tue Jan 25 15:10:11 EST 2005


Author: lluis
Date: 2005-01-25 15:10:11 -0500 (Tue, 25 Jan 2005)
New Revision: 2161

Modified:
   trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog
   trunk/MonoDevelop/Core/src/MonoDevelop.Base/Internal/Project/Project/Project.cs
Log:
2005-01-25  Lluis Sanchez Gual  <lluis at novell.com>

	* Internal/Project/Project/Project.cs: Honor ExternalConsole option
	when running an execution script.



Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog	2005-01-25 17:00:08 UTC (rev 2160)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog	2005-01-25 20:10:11 UTC (rev 2161)
@@ -1,3 +1,8 @@
+2005-01-25  Lluis Sanchez Gual  <lluis at novell.com>
+
+	* Internal/Project/Project/Project.cs: Honor ExternalConsole option
+	when running an execution script.
+
 2005-01-25  Lluis Sanchez Gual <lluis at novell.com>
 	
 	* Services/DispatchService/DispatchService.cs: Don't set the gui sync

Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/Internal/Project/Project/Project.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/Internal/Project/Project/Project.cs	2005-01-25 17:00:08 UTC (rev 2160)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/Internal/Project/Project/Project.cs	2005-01-25 20:10:11 UTC (rev 2161)
@@ -393,7 +393,7 @@
 			string args = configuration.CommandLineParameters;
 			
 			if (configuration.ExecuteScript != null && configuration.ExecuteScript.Length > 0) {
-				ProcessWrapper p = Runtime.ProcessService.StartProcess (configuration.ExecuteScript, args, BaseDirectory, monitor.Log, monitor.Log, null);
+				ProcessWrapper p = Runtime.ProcessService.StartConsoleProcess (configuration.ExecuteScript, args, BaseDirectory, configuration.ExternalConsole, configuration.PauseConsoleOutput, null);
 				p.WaitForOutput ();
 			} else {
 				DoExecute (monitor);




More information about the Monodevelop-patches-list mailing list