I like to use .fsi signature files for visibility control. However, if my solution has both Foo.fsi and Foo.fs , and #load "Foo.fs" in the script, it looks like the corresponding signature file is not used. If I do this:
#load "Foo.fsi" #load "Foo.fs"
... then the required visibility control will happen. Is this the recommended way to achieve this, or is there a better way to do this? In an ideal world, you would also like to automatically download a signature file.
source share