FSharp.Core not found in Xamarin Studio

I have a basic f # project created using Xamarin Studio, but it claims to not be able to find FSharp.Core.

build error

However, the F # REPL with the IDE works fine, so I assume that I have f # in mono.

+7
source share
2 answers

According to Don Sim via twitter, this error is just cosmetic, and the project should still be built. There is also a bug tracking this

https://github.com/fsharp/fsharpbinding/issues/30

+4
source

Take a look at this:

https://github.com/fsharp/fsharp/issues/33

I think you need to build a variant of FSharp.Core to make this work.


EDIT: FWIW, I just tried Xamarin Studio with F # on Win7 and it works fine. I can tell from the screenshot that you are working with Mac OS X, no matter what the problem seems to be specific to this OS. It may be worth the time to contact Xamarin and see if they have any ideas.

By the way, for the sake of insurance, you can test the same thing in Mac OS X, I just created the F # console application, built it and ran it without any changes. Hope this helps.

+3
source

All Articles