Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=76469 --- shadow/76469 2005-10-18 11:53:33.000000000 -0400 +++ shadow/76469.tmp.377 2005-10-18 11:53:33.000000000 -0400 @@ -0,0 +1,32 @@ +Bug#: 76469 +Product: Mono: Class Libraries +Version: 1.1 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Critical +Component: System +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: CSharpCodeCompiler doesn't start mcs.exe on Windows + +Description of Problem: + +Mono 1.1.9.2 +Mono.CSharp.CSharpCodeCompiler doesn't start mcs.exe on Windows. + +Look into mcs\class\System\Microsoft.CSharp\CSharpCodeCompiler.cs, line 155: + +mcs.StartInfo.Arguments = windowsMcsPath + ' ' + BuildArgs (options, +fileNames); + +It needs to surround windowsMcsPath by quotes: + +mcs.StartInfo.Arguments = "\""+ windowsMcsPath + "\" " + BuildArgs +(options, fileNames); _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
