私はそれに対する修正があるかもしれないと思います。fsproj ファイルを手動で編集する必要があります。
<PropertyGroup>
これを項目の後、最初の の前に追加し<Import>
ます。
<PropertyGroup Condition="'$(Platform)' == 'x64'">
<!--
Assembly resolution using msbuild is broken for the x64 platform in F# 2.0.
See https://connect.microsoft.com/VisualStudio/feedback/details/588317/f-project-references-not-working-when-targeting-x64-platform-in-visual-studio-2010
We use simple resolution with a hard-coded list of paths to look for the dlls instead.
-->
<NoStdLib>true</NoStdLib>
<OtherFlags>--simpleresolution</OtherFlags>
<ReferencePath>C:\Windows\Microsoft.NET\Framework64\v3.5;C:\Windows\Microsoft.NET\Framework64\v2.0.50727</ReferencePath>
</PropertyGroup>
OtherFlags
上書きされていることに注意してください。空だったので問題ありませんでした。使用されている場合は、代わりに変数に追加する必要があります。Microsoft.Build.Tasks
ハードコーディングされたリストを使用する代わりに、パスのリストに使用すると便利ですが、それを機能させることができませんでした。