C # DiffSharp v0.7.7 Search FSharp.Core v4.4.0.0

I am trying to use the latest version of DiffSharp (v0.7.7) with C #. I keep getting the following error:

Error 3 Assembly 'DiffSharp, Version = 0.7.7.0, Culture = neutral, PublicKeyToken = null' uses 'FSharp.Core, Version = 4.4.0.0, Culture = neutral, PublicKeyToken = b03f5f7f11d50a3a', which has a higher version than the link to assembly 'FSharp.Core, Version = 4.3.0.0, Culture = neutral, PublicKeyToken = b03f5f7f11d50a3a'

He seems to be looking for FSharp.Core Version 4.4.0.0. As far as I know, there is no such thing. Or I'm wrong? I use Visual Studio 2012 on Windows 10 and have updated absolutely everything I could think of. My .Net build is 4.6.1.

I tried to make this fix mentioned in Stack Overflow: Failed to load file or assembly FSharp.Core, Version = 4.0.0.0 Azure Web Role

but brought nothing.

Has anyone had such experiences?

Any thoughts / ideas / solutions would be highly appreciated.

+4
source share
1 answer

I came across the same problem with diffSharp and C #. I solved the problem by adding the nuget FSharep.core package to the project. Install-Package FSharp.Core -Version 4.7.0

0
source

Source: https://habr.com/ru/post/1648335/


All Articles