Reputation: 1277
I am trying to umbraco upgrade from 7.2.8 to 7.3.0 and getting below error after update :
Could not load file or assembly 'Microsoft.WindowsAzure.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
I have tried to upgrade "Microsoft.WindowsAzure.Configuration" but it also doesn't help.
<dependentAssembly>
<assemblyIdentity name="Microsoft.WindowsAzure.Configuration" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.8.0.0" newVersion="1.8.0.0" />
</dependentAssembly>
Any help on this much appreciated.
Upvotes: 1
Views: 180
Reputation: 1277
I have followed below steps to fix this issue while upgrading umbraco version
Umpdate umbraco package
Update-Package UmbracoCms -Version 7.3.0
Upgrade Window Azure package from 1.8.0 and try to run the project
Microsoft.WindowsAzure.ConfigurationManager - 2.0.1
After this run the project and umbraco will do configuration changes automatically. after successfully upgrade website run successfully
Upvotes: 1