如何将 FSharp.Core 4.3 与 Visual Studio 2015 社区版一起使用

How can I use FSharp.Core 4.3 with Visual Studio 2015 Community Edition

我想用 Deedle,但它会这样抱怨:

Unknown build error, 'Cannot resolve dependency to assembly 'FSharp.Core, Version=4.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' because it has not been preloaded. When using the ReflectionOnly APIs, dependent assemblies must be pre-loaded or loaded on demand through the ReflectionOnlyAssemblyResolve event.'

作为一名 Android 开发人员,通常我对 VS 依赖关系有些困惑。 我尝试使用包管理器控制台,但它只安装 4.0.0.1 而不知道 4.3.0.0。

看来是在这个问题的帮助下解决了:

在 App.config 文件中已经有绑定重定向到 4.4.0.0。不知道是我早点加的还是Deedle。当我将它更改为 4.0.0.1 时,这显然是 FSharp 的最新版本并且令人困惑,我可以使用 NuGet 下载它,它开始工作了。