.net框架(framework)版本不匹配的解决方法
程序员文章站
2024-03-03 17:15:22
在已安装了.net framework的计算机上部署用.net开发的程序时,若.net framework的版本不匹配,则提示:“ .net framework initi...
在已安装了.net framework的计算机上部署用.net开发的程序时,若.net framework的版本不匹配,则提示:“ .net framework initialization error – unable to find a version of the runtime to run this application”。
这时候有个简单的办法是,修改(如果没有则创建)程序xxx.exe所在目录的和xxx.exe同名的config文件——xxx.exe.config,使其:
复制代码 代码如下:
<configuration>
<startup>
<supportedruntime version="v4.0.30319" />
</startup>
</configuration
version处填写计算机以安装的.net framework版本号(可在控制面板的添加删除程序处看到.net framework的版本号)。
这个方法免去了版本号不一致时的各种纠结
上一篇: Java中递归原理实例分析