1

I need to know exactly which FSharp.Compiler.dll file the Fsc.exe is using. I have reasons to believe that it is not using the file adjacent to it, so I want to know which one it does use. The version numbers are the same, but the locations are different.

Any ideas how to find out?

Ramon Snir
  • 7,520
  • 3
  • 43
  • 61

2 Answers2

4

Could always load up Process Explorer and see which DLLs are loaded.

Brad Christie
  • 100,477
  • 16
  • 156
  • 200
1

If you already have a reference to the compiler object, you should do the following : compiler.GetType().Assembly.Location()

Eran
  • 387,369
  • 54
  • 702
  • 768
Greg Bogumil
  • 1,903
  • 15
  • 23