转到 F# 库的定义
这可能是一个微不足道的问题。但是如何将 F# 源代码链接到 Visual Studio,以便“转到定义”适用于 F# 函数(例如 Seq.iter 等)?
It is probably a trivial question. But how can I link the F# source code to the Visual Studio so that "Go to definition" would work for F# functions (such as Seq.iter etc.)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种选择是获取 F# 源,构建 Fsharp.Core.dll,然后链接到该版本您刚刚构建的 Fsharp.Core.dll。这将使您能够调试 F# 库源代码,就像您拥有自制源代码的任何其他库程序集一样。
One option would be to grab the F# source, build Fsharp.Core.dll, and then link against the version of Fsharp.Core.dll that you just built. This would give you the ability to debug into F# library source code just like any other library assembly for which you have home-built source code.