其他分享
首页 > 其他分享> > Error in load assembly 'System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1'

Error in load assembly 'System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1'

作者:互联网

可以再App.config 中追加下面申明

直接加在configuration  节点下就可以了。 

这样就可以使用最新的 5.0.0.0 版本了。

  <runtime>  
      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">  
         <dependentAssembly>  
            <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe"  
                              publicKeyToken="b03f5f7f11d50a3a"  
                              culture="neutral" />  
            <bindingRedirect oldVersion="0.0.0.0-5.0.0.0"  
                             newVersion="5.0.0.0"/>  
         </dependentAssembly>  
      </assemblyBinding>  
   </runtime>  

  

标签:load,5.0,assembly,4.0,0.0,System,Version,Runtime
来源: https://www.cnblogs.com/xixiuling/p/16489985.html