I have a .NET4.6.1 project which, if I link to Nuget's FSharp.Core latest version (at the time of writing 4.3.4) throws the following exception:
Can't find custom attr constructor image: /Users/andres/Documents/Code/MyApp/src/MyApp/bin/Debug/MyApp.exe mtoken: 0x0a000015 due to: Could not load file or assembly 'FSharp.Core, Version=4.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. assembly:FSharp.Core, Version=4.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a type: member:
Strangely enough, I only find the .dll
in the obj
folder but not in the bin
one, after compiling:
$ find ./src | grep FSharp.Core
./src/MyApp/obj/Debug/FSharp.Core.dll
Is this expected? I'm using VS4Mac.