views:

298

answers:

1

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.

+2  A: 

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

wethercotes
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