我使用Tickspec在F#中为我的应用程序编写了AT。我正在使用FSharp.Data.Http.Request
,我收到以下错误:
System.MissingMethodException : Method not found: 'FSharp.Data.HttpResponse
FSharp.Data.Http.Request(System.String,
Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Collections.FSharpList`1
<System.Tuple`2<System.String,System.String>>>,
Microsoft.FSharp.Core.FSharpOption`1<System.Collections.Generic.IEnumerable`1
<System.Tuple`2<System.String,System.String>>>,
Microsoft.FSharp.Core.FSharpOption`1<System.String>,
Microsoft.FSharp.Core.FSharpOption`1<FSharp.Data.HttpRequestBody>,
Microsoft.FSharp.Core.FSharpOption`1<System.Collections.Generic.IEnumerable`
1<System.Tuple`2<System.String,System.String>>>,
Microsoft.FSharp.Core.FSharpOption`1<System.Net.CookieContainer>,
Microsoft.FSharp.Core.FSharpOption`1<Boolean>,
Microsoft.FSharp.Core.FSharpOption`1<System.String>,
Microsoft.FSharp.Core.FSharpOption`1<Microsoft.FSharp.Core.FSharpFunc`2
<System.Net.HttpWebRequest,System.Net.HttpWebRequest>>)'.
at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[]
arguments, Signature sig, Boolean constructor)
at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj,
Object[] parameters, Object[] arguments)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags
invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at <StartupCode$TickSpec>.$TickSpec.createAction@212-1.Invoke()
FSharp.Data
版本为2.1.1.0。
在fsproj
:
ToolsVersion is 14.0
TargetFrameworkVersion is v4.6.1
F# is 4.0.
我有另一组用于不同应用程序的AT,我使用相同的FSharp.Data.dll
和相同的Http.Request
方法,他们使用F# 4.0
,我没有遇到任何问题。
我不认为dll有任何问题,因为我在示例应用程序中使用它并且我能够使用该Http.Request方法。我创建了一个全新的解决方案,因为我想我可能正在使用旧版本的FSharp.Core,但FSharp.Data仍然存在同样的问题。
我找到的唯一解决方案是恢复到该特定项目的F#3.0
。我不想使用F#3.0
,因为我们已经转移到F#4.0
所有其他应用程序。
知道如何解决这个问题吗?
答案 0 :(得分:2)
将app.config或以下内容添加到任何现有的app.config中。如果你有多个项目。即测试和应用,您需要将它添加到两者。
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.4.0.0" newVersion="4.4.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
答案 1 :(得分:1)
听起来你在FSI中以某种方式绑定到F#3.x.你能在你的脚本中看到(如果你是通过脚本执行这个),正在引用哪个版本的FSharp.Core?
如果我没记错的话,TickSpec是针对F3.x编译的,所以这可能是绑定重定向问题或类似问题。