简体   繁体   中英

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

I'd like to know how to change web.config when upgrading to Windows Azure 2.5. Current web.config is like

<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" />

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM