Missing Microsoft.Data.Services.Client version 5.6 on Azure Websites

18,357

Solution 1

Storage client library has a dependency on this assembly and unfortunately it's not downloaded automatically when you install the library through Nuget. You would need to get this package yourself. You can download this package from here: http://www.nuget.org/packages/Microsoft.Data.Services.Client/.

For more information, please read the comments on this blog post from storage team: http://blogs.msdn.com/b/windowsazurestorage/archive/2013/11/27/windows-azure-storage-release-introducing-cors-json-minute-metrics-and-more.aspx.

Solution 2

I ended up removing storage, installing the 5.6.0 version and then re-installing

  UnInstall-Package WindowsAzure.Storage

  Install-Package Microsoft.Data.Services.Client -Version 5.6.0

  Install-Package WindowsAzure.Storage

Solution 3

Agree with StressChicken. The thing here is the latest WindowsAzure.Storage will install Services.Client 5.6.1 by default, which will throw exception for some reason. just install Service.Client 5.6.0 before WindowsAzure.Storage. Then WindowsAzure.Storage will use the installed 5.6.0 to resolve dependency.

Solution 4

Installing the nuGet package above still didn't help me when publishing to Azure from Visual Studio 2013. I had to manually upload the Microsoft.Data.Services.Client.dll to the bin folder via FTP to Azure. Hope that helps someone as well.

Solution 5

Found it resolved the issue for me if I added the following to the appropriate project's app.config:

  <dependentAssembly>
    <assemblyIdentity name="Microsoft.Data.Services.Client" publicKeyToken="31bf3856ad364e35" culture="neutral" />
    <bindingRedirect oldVersion="0.0.0.0-5.6.3.0" newVersion="5.6.3.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="Microsoft.Data.Edm" publicKeyToken="31bf3856ad364e35" culture="neutral" />
    <bindingRedirect oldVersion="0.0.0.0-5.6.3.0" newVersion="5.6.3.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="Microsoft.Data.OData" publicKeyToken="31bf3856ad364e35" culture="neutral" />
    <bindingRedirect oldVersion="0.0.0.0-5.6.3.0" newVersion="5.6.3.0" />
  </dependentAssembly>
Share:
18,357

Related videos on Youtube

bbosak
Author by

bbosak

Updated on September 15, 2022

Comments

  • bbosak
    bbosak over 1 year

    I've recently tried to deploy a website to the Windows Azure websites service which utilizes Azure Storage. Upon deployment, I received the following error coming from the Storage SDK, which seems to reference a version of an assembly that doesn't yet exist. I have not been able to find this version of the DLL file anywhere. Any suggestions?

    Could not load file or assembly 'Microsoft.Data.Services.Client, Version=5.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

  • Yasser Sinjab
    Yasser Sinjab about 10 years
    It really helps me , Thanks !!
  • Mike W
    Mike W about 10 years
    I still have the issue even after running additional nuget.
  • Gaurav Mantri
    Gaurav Mantri about 10 years
    Please check the version of the library which gets installed. Is it 5.6.0 or 5.6.1?