2

我无法使用 WCF 测试客户端。我总是收到以下错误。

Error: Cannot load reference assembly 'C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll'    
Cannot load file C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll as an Assembly. Check the FusionLogs for more Information.
Could not load file or assembly 'file:///C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll' or one of its dependencies.
This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.

我没有运气在谷歌上找到解决方案。我希望 stackOverflow 蜂巢大脑可以提供帮助。

谢谢。

4

1 回答 1

3

如果我没记错的话,您需要在 app.config 文件的<configuration>元素中添加运行时版本设置:

<startup>
  <requiredRuntime version="v4.0.30319" />
</startup>
于 2011-02-15T05:14:10.673 回答