I'm triggering AssemblyResolve by setting "Copy Local" of a particular DLL to false. My AssemblyResolve gets triggered, and I get to choose the location of my DLL.
Later in the code, I want AssemblyResolve to re-trigger so I can specify a new DLL location, but since the DLL from the first AssemblyResolve was loaded successfully, I can't reload a new DLL.
Is there a way I can clear the current DLL and reload it? Or something like that???
Thanks!