Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将另一个 F# 源文件 ( *.fs) 加载到项目中?预#load "path/to/file"处理器指令仅在您使用的文件是 F# 脚本文件或 F# 交互式文件时才有效。
*.fs
#load "path/to/file"
我认为这可能与makefile有关,对吗?
编辑:另外,我没有使用任何 IDE;只有 Emacs 和 Mono。
如果您在命令行手动编译,则必须按顺序列出您希望 F# 编译器使用的所有文件。
否则,与 makefile 等效的 .NET 是MSBuild,而 MSBuild 的 Mono 版本是XBuild。