I have a solution with multiple F# projects. I can easily reference between projects using relative path.
However, if I want to use that project in a .fsx file in another project, I have to provide the absolute path to the corresponding dll file, which is quite inconvenient. I notice that F# Powerpack could be referenced in F# Interactive in a convenient way:
#r "FSharp.Powerpack.dll"
How can I register a path to F# Interactive permanently or reference a project to use in F# Interactive without providing the absolute path?