zoukankan      html  css  js  c++  java
  • 请考虑使用 app.config 将程序集“System.Data, Culture=neutral, PublicKeyToken=969db8053d3322ac, Retargetable=Yes”从版本“2.0.0.0”[]重新映射

    做mobile开发编译输出提示:

    请考虑使用 app.config 将程序集“System.Data, Culture=neutral, PublicKeyToken=969db8053d3322ac, Retargetable=Yes”从版本“2.0.0.0”[]重新映射到版本“3.5.0.0”

    只需在项目中加入 App.Config 文件,文件内容如下即可:

    代码
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
        
    <runtime>
            
    <assemblyBinding>
                
    <dependentAssembly>
                    
    <assemblyIdentity name= "System.Data" culture= "neutral" publicKeyToken= "969db8053d3322ac" Retargetable= "Yes"/>
                    
    <bindingRedirect oldVersion= "2.0.0.0" newVersion= "3.5.0.0"/>
                
    </dependentAssembly>
                
    <dependentAssembly>
                    
    <assemblyIdentity name= "System" culture= "neutral" publicKeyToken="969db8053d3322ac" Retargetable= "Yes"/>
                    
    <bindingRedirect oldVersion= "2.0.0.0" newVersion= "3.5.0.0" />
                
    </dependentAssembly>
                
    <dependentAssembly>
                    
    <assemblyIdentity name= "System.Xml" culture= "neutral" publicKeyToken="969db8053d3322ac" Retargetable= "Yes"/>
                    
    <bindingRedirect oldVersion= "2.0.0.0" newVersion= "3.5.0.0" />
                
    </dependentAssembly>
            
    </assemblyBinding>
        
    </runtime>
    </configuration>

    个人猜测,可能是运行时检测到安装有多个版本,推荐用新的版本运行.

  • 相关阅读:
    你可能不知道的css-doodle
    js变量提升与函数提升的详细过程
    绑定Github上的个人博客到Godaddy域名
    基于Github&Hexo的个人博客搭建过程
    github提交代码contributions不显示小绿块
    从零开始学 Web 系列教程
    从零开始学 Web 之 Vue.js(六)Vue的组件
    从零开始学 Web 之 Vue.js(五)Vue的动画
    从零开始学 Web 之 Vue.js(四)Vue的Ajax请求和跨域
    CSS(二)- 选择器
  • 原文地址:https://www.cnblogs.com/heimirror/p/1630126.html
Copyright © 2011-2022 走看看