升级到 Windows Azure.2.5 时如何更改 web.config

how to change web.config when upgrading to Windows Azure.2.5

我想知道如何在升级到 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>

您可以像这样轻松编辑 bindingRedirect 部分:

<bindingRedirect oldVersion="0.0.0.0-2.4.0.0" newVersion="2.5.0.0" />