在 Linux 上添加对外部 .dll 的引用

发布于 2024-09-16 05:12:27 字数 81 浏览 4 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木森分化 2024-09-23 05:12:27

在 Mono 上添加引用的方式与在 Windows 上完全相同。您只需要下载 PowerPack(有一个 ZIP 下载,可以在Linux)。从命令行构建 F# 应用程序时,只需指定引用:

mono <fsharp-path>/fsc.exe 
  --resident 
  -r:<powerpack-path>/FSharp.PowerPack.dll 
  input.fs

这应该可以正常工作(请注意 --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:

mono <fsharp-path>/fsc.exe 
  --resident 
  -r:<powerpack-path>/FSharp.PowerPack.dll 
  input.fs

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文