安装.NET 4.5但应用程序运行时出现错误消息

时间:2013-10-14 15:21:03

标签: .net runtime app-config

我的dev机器上安装了.NET 4.5: enter image description here

但是,当我的应用运行时,我收到此消息:

enter image description here

我在app.config中有这个:

<supportedRuntime version="v4.5" sku=".NETFramework, version=v4.5"/>

我还需要做些什么吗?

1 个答案:

答案 0 :(得分:3)

我将<supportedRuntime>节点替换为:

<startup>
  <supportedRuntime version="v4.0.30319"/>
</startup>

根据MSDN上的this。它适用于.NET 4和4.5同一版本的CLR,v4.0.30319。