[Mono-list] assembly bind tracking
    Jonathan Pryor 
    jonpryor at vt.edu
       
    Mon May  4 16:46:32 EDT 2009
    
    
  
On Mon, 2009-05-04 at 13:23 -0700, fozzie wrote:
> Is there a way to track assembly binding in Mono? I tried fuslogvw, but it
> seems MS-specific. I have code in one appdomain which calls code in
> another.. i think i'm being careful but i want to make sure assemblies
> aren't getting loaded in the caller to resolve types (or for any other
> reason unknown to me). I'm using embedded Mono built from source.
Run with the environment variables MONO_LOG_LEVEL=info and
MONO_LOG_MASK=asm set, e.g.
	MONO_LOG_LEVEL=info MONO_LOG_MASK=asm mono yourapp.exe
The assembly probing and related logic will be printed to stdout.
See the mono(1) man page for more information.
 - Jon
    
    
More information about the Mono-list
mailing list