[Mono-list] System.Xml file not found?

J. Perkins jason@379.com
Tue, 13 Aug 2002 08:06:01 -0400


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