vote up 6 vote down star
5

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?

flag

79% accept rate

3 Answers

vote up 13 vote down check

IF you use this:

 System.Reflection.Assembly.Load(System.IO.File.ReadAllBytes(path))

It will not lock the file.

link|flag
Really?!? that'll be cool if it works! +1 – Adam Naylor Jun 23 at 9:06
That worked perfectly! I'll leave this open just to see if anyone covers some of the other points... – Adam Naylor Jun 23 at 9:10
Glad it worked for you :) I have never tried the AppDomain method, although I did read a little about it while looking for a solution to this very problem. – Pondidum Jun 23 at 9:17
5  
The down-side of this approach would probably be that you cannot 'unload' the assembly from memory, meaning each time you update the DLL and reload you end up with another copy in-memory. The AppDomain method is a bit more circumspect and has a (slight?) performance down-side, but it does mean that you can unload the AppDomain when you no longer need it. – jerryjvl Jun 23 at 9:40
vote up 0 vote down

A coworker of mine suggested I use this framework instead. I'm just beginning to study it:

http://mef.codeplex.com

link|flag
vote up 0 vote down

Use Microsoft.Cci included in Microsoft FxCop

Sample for version 1.35:

using Microsoft.Cci;
// [...]
AssemblyNode assembly = AssemblyNode.GetAssembly(path);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.