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

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Sat May 8 17:54:25 EDT 2004


Author: tberman
Date: 2004-05-08 17:54:25 -0400 (Sat, 08 May 2004)
New Revision: 1595

Modified:
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
Log:
more makefile magic


Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs	2004-05-08 21:25:08 UTC (rev 1594)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs	2004-05-08 21:54:25 UTC (rev 1595)
@@ -416,6 +416,12 @@
 			if (compilerparameters.UnsafeCode) {
 				stream.Write ("/unsafe ");
 			}
+			if (compilerparameters.DefineSymbols != null && compilerparameters.DefineSymbols.Length > 0) {
+				stream.Write ("/define:" + '"' + compilerparameters.DefineSymbols + '"' + " ");
+			}
+			if (compilerparameters.MainClass != null && compilerparameters.MainClass.Length > 0) {
+				stream.Write ("/main:" + compilerparameters.MainClass + " ");
+			}
 			stream.WriteLine ();
 			stream.WriteLine ();
 

Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2004-05-08 21:25:08 UTC (rev 1594)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2004-05-08 21:54:25 UTC (rev 1595)
@@ -1,5 +1,9 @@
 2004-05-08  Todd Berman  <tberman at sevenl.net>
 
+	* CSharpBindingCompilerManager.cs: output /define and /main properly.
+
+2004-05-08  Todd Berman  <tberman at sevenl.net>
+
 	* CSharpBindingCompilerManager.cs: output /unsafe properly.
 
 2004-04-29  Todd Berman  <tberman at sevenl.net>




More information about the Monodevelop-patches-list mailing list