It looks like the AppDomain.AssemblyResolve only fires after the
event, and doesn't allow you to override the behavior ;-(
Well... once you have loaded one assembly you could perhaps load
pre-emptively by walkint the reference tree (GetReferencedAssemblies).
You need to keep track of what you have loaded, not necessarily to
prevent re-loads (the framework will tae care of this), but more to
prevent cycling (there are loops at the bottom...).
Marc
Dave - 23 Aug 2007 15:10 GMT
Thanks Marc. Will look into that.
> It looks like the AppDomain.AssemblyResolve only fires after the event,
> and doesn't allow you to override the behavior ;-(
[quoted text clipped - 6 lines]
>
> Marc