2

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

Oldrich Svec
  • 4,191
  • 2
  • 28
  • 54

1 Answers1

4

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.

sblom
  • 26,911
  • 4
  • 71
  • 95
  • That sounds too complicated. But thanks anyway for your answer. – Oldrich Svec Oct 21 '11 at 09:49
  • 1
    I don't think this would enable "Go to definition," since it _just doesn't work_ for F#, but being able to step into the code when debugging is nice. – Daniel Oct 21 '11 at 14:11