I believe I've found a bug, but I'm not sure where I should log it.
Using the following code:
using System;
using System.Xml;
class XmlTest {
static void Main() {
XmlDocument xml = new XmlDocument();
Console.WriteLine("xml created");
}
}
If I build it on Windows with csc, it will run under Linux/Mono.
But if I build it on Linux with msc and try and run it under .net,
I get:
"Unhandled Exception: System.IO.FileNotFoundException: File or
assembly name System.Xml, or one of its dependencies, was not
found."
Is this a problem with the class library, the compiler, or the
runtime?
Jason
379
_______________________________________________
Mono-list maillist - [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list