Possible Duplicate:
F#/C# - fsx Script Files and Project References
I have moved some F# files into a different project, and now referencing them from an F# script looks quite ugly. Here's what I had to do to reference an assembly "MyLib.dll":
// Commented out: does not work! // #r "MyLib.dll"
// Ugly!
r "..\MyLib\bin\Debug\MyLib.dll"
I tried to add a reference path to a project settings, but it didn't help either. Of course the assembly MyLib.dll is added to my project's referenced assemblies, but looks like FSX script files does not really care - I have to list assemblies in a script file using their absolute or relative path.
Is this by design or there is a better way?