[Mono-list] System.Net
Miguel de Icaza
miguel@ximian.com
14 Jul 2002 20:11:08 -0400
> I'm trying to write some Unit tests for System.Net.DNS but am having trouble
> linking my applicationl. Shouldn't there be a System.Net.dll? When I build
> from cvs I don't get one so maybe I should be trying to link something else
> instead.
>
> Here's how I'm compiling right now:
> mcs HostByName.cs
Just reference the assembly, like this:
mcs HostByName.cs -r System
Currently we do not pre-load all the assemblies as CSC does, sorry about
that.
Miguel