[Monodevelop-patches-list] r1308 - trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Wed Mar 31 15:55:10 EST 2004


Author: tberman
Date: 2004-03-31 15:55:10 -0500 (Wed, 31 Mar 2004)
New Revision: 1308

Modified:
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingExecutionManager.cs
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
Log:
fixing execution bug with strange compile targets.


Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingExecutionManager.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingExecutionManager.cs	2004-03-31 20:02:56 UTC (rev 1307)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingExecutionManager.cs	2004-03-31 20:55:10 UTC (rev 1308)
@@ -79,16 +79,16 @@
 						break;
 				}
 				
-				if (parameters.CompileTarget != CompileTarget.WinExe && parameters.PauseConsoleOutput) {
+				//if (parameters.CompileTarget != CompileTarget.WinExe && parameters.PauseConsoleOutput) {
 					psi = new ProcessStartInfo("xterm",
 						string.Format (
 						@"-e ""{0} '{1}{2}' {3} ; echo; read -p 'press any key to continue...' -n1""",
 						runtimeStarter, directory, exe, args));
 					psi.UseShellExecute = false;
-				} else {
-					psi = new ProcessStartInfo(runtimeStarter, "\"" + directory + exe + "\" " + args);
-					psi.UseShellExecute = false;
-				}
+				//} else {
+				//	psi = new ProcessStartInfo(runtimeStarter, "\"" + directory + exe + "\" " + args);
+				//	psi.UseShellExecute = false;
+				//}
 			}
 			
 			try {

Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2004-03-31 20:02:56 UTC (rev 1307)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2004-03-31 20:55:10 UTC (rev 1308)
@@ -1,5 +1,10 @@
-2004-03-31  Todd Berman <tberman at sevenl.net>
+2004-03-31  Todd Berman  <tberman at sevenl.net>
 
+	* CSharpBindingExecutionManager.cs: dont test CompileTarget, for now
+	assume *everything* is being run in a terminal and pausing for output.
+
+2004-03-31  Todd Berman  <tberman at sevenl.net>
+
 	* Makefile.am: i think this fixed nick's bug.
 
 2004-03-28  John Luke  <jluke at cfl.rr.com>




More information about the Monodevelop-patches-list mailing list