I'm loading a DLL via System.Reflection.Assembly.LoadFile and reflecting over it's members in a plugin-esque system.
I need to be able to update/overwrite these DLL while the system is running but it appears that after calling System.Reflection.Assembly.LoadFile the file is subsequently locked.
Does anyone know of a way to unlock the file?
I have read about loading the file in a seperate appdomain? is there any pitfalls to this approach?
|
5
|
|
||
|
|
|
|
IF you use this:
It will not lock the file. |
||||||||||
|
|
|
A coworker of mine suggested I use this framework instead. I'm just beginning to study it: |
||
|
|
|
|
Use Microsoft.Cci included in Microsoft FxCop Sample for version 1.35:
|
|||
|
|
