How to add link in fsharpi with version and public key in Mono

The following #r command will work fine on Windows

#r "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"

In Osx with Mono 3.0.6, it cannot find the file, even if the file is in the search path.

I guess this could be due to a delay in Mono's subscription, can anyone confirm this or find out what works best?

+5
source share
1 answer

Link #rwith full name is currently not supported in Mono.

There are areas in F # code that check for Mono and return only link downloads to the file. This was due to limitations in xbuild support at the time of writing.

Now that xbuild is more mature, I hope this can be resolved.

,

+3

All Articles