Created
January 15, 2012 17:08
-
-
Save ilkerde/1616463 to your computer and use it in GitHub Desktop.
Missing AddToObservable while building FAKE with FAKE using Mono
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ilker@x fake]$ mono build/FAKE.exe build.fsx | |
Missing method Microsoft.FSharp.Control.CommonExtensions::AddToObservable<[1]>(IObservable`1<!!0>,FSharpFunc`2<!!0, Unit>) in assembly /usr/local/lib/mono/gac/FSharp.Core/2.0.0.0__b03f5f7f11d50a3a/FSharp.Core.dll, referenced in assembly /home/ilker/Code/fake/build/FakeLib.dll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note (to self):
This error is the very own, special and polite way of Mono/FSharp pair telling me that I've built
FAKE.exe
andFakeLib.dll
withFSharp.Core.dll
v4.0 while mono binds it (though gac and search path) toFSharp.Core.dll
v2.0.I got rid of this error by just consistently compiling everything targetting v2.0 assemblies of FSharp.