简体   繁体   English

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

[英]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. 我想知道在升级到Windows Azure 2.5时如何更改web.config。 Current web.config is like 当前的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" />

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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