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

后端 未结 8 809
灰色年华
灰色年华 2020-12-08 21:56

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

相关标签:
8条回答
  • 2020-12-08 22:31

    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
    
    0 讨论(0)
  • 2020-12-08 22:33

    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.

    0 讨论(0)
提交回复
热议问题