.NET框架版本冲突问题

时间:2018-02-02 00:31:53

标签: c# .net

当我加载我的应用程序时,收到以下错误: enter image description here

我立即尝试安装该版本,但它通知我已安装该版本: enter image description here

这里发生了什么?

1 个答案:

答案 0 :(得分:3)

app.config fie包含supportedRuntime元素中SKU ID的无效值。出于某种原因,这是:

<supportedRuntime version="v4.0" sku=".NETFramework,ServerVersion=v4.6.1" />

但看起来应该更像这样:

<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />

您可以在this list中看到有效的值列表。