[Monodevelop-patches-list] r1568 - trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Mon May 3 22:16:53 EDT 2004
Author: pawel
Date: 2004-05-03 22:16:53 -0400 (Mon, 03 May 2004)
New Revision: 1568
Modified:
trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/ChangeLog
trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingExecutionServices.cs
Log:
use xterm like other bindings
Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/ChangeLog 2004-05-04 02:14:05 UTC (rev 1567)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/ChangeLog 2004-05-04 02:16:53 UTC (rev 1568)
@@ -1,3 +1,7 @@
+2004-05-04 Pawel Rozanski <tokugawa at afn.no-ip.org>
+
+ * NemerleBindingExecutionServices.cs: use xterm to run project
+
2004-04-28 Todd Berman <tberman at sevenl.net>
* NemerleLanguageBinding.cs: stubbing GenerateMakefile
Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingExecutionServices.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingExecutionServices.cs 2004-05-04 02:14:05 UTC (rev 1567)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingExecutionServices.cs 2004-05-04 02:16:53 UTC (rev 1568)
@@ -40,7 +40,10 @@
exe += " " + p.OutputAssembly + ".exe " + p.Parameters;
try {
- ProcessStartInfo psi = new ProcessStartInfo(exe);
+ ProcessStartInfo psi = new ProcessStartInfo("xterm",
+ string.Format (
+ @"-e ""{0} ;echo;read -p 'press any key to continue...' -n1""",
+ exe));
psi.WorkingDirectory = fus.GetDirectoryNameWithSeparator(p.OutputDirectory);
psi.UseShellExecute = false;
More information about the Monodevelop-patches-list
mailing list