azure – 无法加载文件或程序集ServiceRuntime 2.4.0.0

前端之家收集整理的这篇文章主要介绍了azure – 无法加载文件或程序集ServiceRuntime 2.4.0.0前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
升级我们的项目以使用Azure SDK 2.5后,当部署到Azure(Web角色)时,我会收到以下运行时异常:

Could not load file or assembly
‘Microsoft.WindowsAzure.ServiceRuntime,Version=2.4.0.0,
Culture=neutral,PublicKeyToken=31bf3856ad364e35′ or one of its
dependencies. The system cannot find the file specified.

NuGet的一个引用的包仍然引用了ServiceRuntime 2.4.0.0.从我所理解的,我需要做的是修复这个是在我们的web.config中创建一个bindingRedirect:

<dependentAssembly>
    <assemblyIdentity name="Microsoft.WindowsAzure.ServiceRuntime" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
    <bindingRedirect oldVersion="0.0.0.0-2.5.0.0" newVersion="2.5.0.0"/>
</dependentAssembly>

不幸的是这不行.异常仍然存在.任何人都可以提供指导吗?

解决方法

升级到SDK 2.5后,我现在有同样的问题.我解决了所有的项目,并检查了所有对Microsoft.WindowsAzure.ServiceRuntime的引用.删除它们,并使用添加引用选项再次添加它们.再次选择程序集,但确保它是2.5.0.0版本.重建和重新部署.事情现在应该再起
原文链接:https://www.f2er.com/html/230660.html

猜你在找的HTML相关文章