升级我们的项目以使用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>
不幸的是这不行.异常仍然存在.任何人都可以提供指导吗?