10

I'm trying to run some FParsec code in F# Interactive but with no success. I am able to build and run this tutorial.fs file, but the same isn't happening with FSI, as it didn't recognize FParsec.dll.

I've already tried running the #r "Parsec" command in FSI but it was of no avail.

Anyone has a clue on what might be the problem here?

enter image description here

devoured elysium
  • 101,373
  • 131
  • 340
  • 557

1 Answers1

15

FParsec is not GAC installed, therefore you need to put the full path to the dll in the #r directive, not just the name of the assembly. Also, don't forget that "...FParsec is built as two DLLs. The C# bits are compiled into the FParsecCS.dll and the F# bits (which depend on the C# bits) are compiled into FParsec.dll." (section 3.2 of the documentation). e.g.

#r @"C:\FParsecCS.dll"
#r @"C:\FParsec.dll"
Stephen Swensen
  • 22,107
  • 9
  • 81
  • 136