[Mono-list] Using other Assemblies at Run time

Jonathan Pryor jonpryor@vt.edu
Sun, 02 Nov 2003 12:26:48 -0500


I believe that .NET will also look under a "bin" sub-directory for
Assembly resolution purposes, so that could be used.

You can also configure the directories to search for in the
AppDomainSetup properties used when creating an AppDomain.  However, I
don't know if it's possible to change the search directories after the
AppDomain has started.

I'm not sure if Mono supports the "bin" sub-directory yet.

- Jon

On Sat, 2003-11-01 at 13:56, Met @ Uber wrote:
> I'm writing an application that uses assemblies like log4net which do
> not belong with the rest for many reasons.  As such, I'm trying to
> figure out where it belongs.  If this were Java I'd create a lib
> directory to hold the Jars in the same directory as the EXE, but this
> isn't Java ;-)
> 
> So basically, where do I put assemblies I need to be distributed with my
> application?  I do not want them in the main directory, for neatness,
> separation, etc.
> 
> Thanks in advance,
> 
> ~ Matthew
> 
> _______________________________________________
> Mono-list maillist  -  Mono-list@lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
--