在 Linux 上添加对外部 .dll 的引用
我正在 Linux 机器上使用 Mono 构建 F# 应用程序,但需要引用 F# Power Pack 中的 DLL。
我该怎么做?
I'm building an F# application with Mono on a Linux box but need to reference a DLL from the F# Power Pack.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Mono 上添加引用的方式与在 Windows 上完全相同。您只需要下载 PowerPack(有一个 ZIP 下载,可以在Linux)。从命令行构建 F# 应用程序时,只需指定引用:
这应该可以正常工作(请注意
--resident
选项,该选项在后台启动 F# 编译器进程,因此它使 F# 编译器在 Mono 上速度更快,因为它不会在每次启动时再次进行 JIT 处理)。Adding references on Mono works exactly the same way as on Windows. You just need to download PowerPack (there is a ZIP download, which can be extracted on Linux). When building your F# application from the command line, you just specify the reference:
This should work just fine (Note the
--resident
option, which starts F# compiler process in the background and so it makes F# compiler on Mono faster, because it isn't JITted again each time it starts).