在已安裝了.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的版本號)。
這個方法免去了版本號不一致時的各種糾結