我想知道在升级到Windows Azure 2.5时如何更改web.config。当前web.config
就像
<dependentAssembly>
<assemblyIdentity name="Microsoft.WindowsAzure.ServiceRuntime" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.8.0.0" newVersion="1.8.0.0" />
</dependentAssembly>
答案 0 :(得分:2)
您可以像这样轻松编辑bindingRedirect
部分:
<bindingRedirect oldVersion="0.0.0.0-2.4.0.0" newVersion="2.5.0.0" />