Hi

I am using the mono compiler on Windows and ran into the problem of the output not being in quotes. Result, I could not compile my application because there was a space. I would like to propose a small fix like what I did in my sources.

protected override void WriteOption(TextWriter writer, string name, string arg) {
if (name.Equals("out")) {
writer.WriteLine("-o \"{0}\"", arg);
} else if (name.Equals("reference")) {
writer.WriteLine("-r {0}", arg);
} else {
writer.WriteLine("--{0} {1}", name, arg);
}
}

Notice the extra quotes in -o

Thanks

Christian Gross



-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
_______________________________________________
Nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to