I would like to use the F# interactive console with the projects in the currently open solution in Visual Studio 2010. Is there a quick and easy way to add a reference in the F# interactive console to reference projects in the currently open solution?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

If it's a project you reference often, you can add an 'always' reference to the FSI command line, under Tools->Options->F# Tools->F# interactive options. Add a -r switch like:

-r "C:\Users\yaddayadda\MyDll.dll"
link|improve this answer
that is a great tip, thank you sooooooo much! – Russell Jun 6 '10 at 23:37
feedback

I've got lines like this at the top of my .fs file:

#if INTERACTIVE
#r @"C:\path\to\some.dll"
#I @"C:\Users\bford\path\to\a\project\in\this\solution\bin\Debug"
#r "Project.name"
#endif

Alt-Enter now drops me into fsi with all the required stuff loaded

link|improve this answer
feedback

I don't think there is any direct way to reference a project in the solution. The best way I can think of is to add a FSX file somewhere to your project with the #r directive:

#r @"bin\Debug\YourProject.dll"

Then you can at least reference the compiled DLL file simply by hitting Alt+Enter in Visual Studio. As far as I know, you cannot reference the project - you can only reference an assembly.

Currently, F# Interactive is really disconnected from the project system in Visual Studio. I suppose that closer integration would be quite useful (but probably difficult to provide).

link|improve this answer
Hmmm, yeah I thought it would be half the point of having the F# interactive window in the IDE, would be to get some context of the IDE. Hopefully someone can shed some more light on this? – Russell Jun 6 '10 at 2:59
feedback

Your Answer

 
or
required, but never shown

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