Is there a way in .NET to enable Assembly.Load? I know that while working under the debugger, it gives you a nice message, for example, "Loaded" assembly X ", but I want to get the assembly load log of my running application outside the debugger, preferably by mixing with Debug / Trace log messages.
I track various things in my application, and I basically want to know what action caused the particular assembly to load.
source
share