<configuration> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIDentity name="Oracle.DataAccess" publicKeyToken="89b483f429c47342"/> <bindingRedirect oldVersion="2.121.1.0" newVersion="2.112.3.0"/> </dependentAssembly> </assemblyBinding> </runtime></configuration>
什么都没有显示(没有任何东西,完全是空的),但我对这个工具并不太熟悉,所以也许我使用那个错误(也是).
有任何想法吗?
解决方法 您的配置文件看起来正确.但我会将旧版本改为此版本0.0.0.0-2.999.9.0.因为那时您并不关心Oracle dll的实际版本是什么,而新版本是您想要使用的正确(旧)版本.
现在你确定这是正确的版本吗? Oracle.DataAccess的第2版非常古老.
<configuration> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIDentity name="Oracle.DataAccess" publicKeyToken="89b483f429c47342"/> <bindingRedirect oldVersion="0.0.0.0-2.999.9.0" newVersion="2.112.3.0"/> </dependentAssembly> </assemblyBinding> </runtime></configuration>
以下是来自MS的更多信息
https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/runtime/bindingredirect-element
以上是内存溢出为你收集整理的C#程序集重定向全部内容,希望文章能够帮你解决C#程序集重定向所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)