The F# Interactive (fsi.exe) has a directive to reference a given assembly:

>#help;;
   [...]
   #r "file.dll";;        Reference (dynamically load) the given DLL
   [...]

I often like to unload/unreference previously referenced assemblies in order to recompile them. Is that possible?

Edit: I'm running fsi under MacOSX and Mono - should be the same as from command line under windows.

link|improve this question
if it loads with the regular Assembly.Load, then I guess not: blogs.msdn.com/suzcook/archive/2003/07/08/57211.aspx – Mauricio Scheffer Nov 17 '09 at 20:53
That does not look promising... but thank you. – Johan Kullbom Nov 17 '09 at 21:26
Unless the FSI implementation is very naive, all dynamic assembly loading will be performed in a sandboxed AppDomain, which can be unloaded. You won't be able to unload individual assemblies though. – Robert Jeppesen Nov 2 '10 at 19:45
feedback

1 Answer

up vote 2 down vote accepted

You can right click and select Reset Session. But obviously this clears everything, not just your references.

link|improve this answer
I am under MacOSX and mono so I don't really have that alternative... but it seems like you're right - reseting the session is the only solution... :( – Johan Kullbom Nov 17 '09 at 22:12
#quit;; will stop the session, allowing you to press enter to restart the session. – Robert Jeppesen Nov 2 '10 at 19:48
feedback

Your Answer

 
or
required, but never shown

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