How can I load another F# source file (*.fs) into a project? The #load "path/to/file" preprocessor directive only works if the file you’re working from is an F# script file or F# interactive.
I think it may have to do with a makefile, am I correct?
EDIT: Also, I’m not using any IDE; just Emacs, and Mono.
If you’re compiling manually at the command line, you must list all the files you want the F# compiler to use, in order.
Otherwise, the .NET equivalent to a makefile is MSBuild, and the Mono version of MSBuild is XBuild.