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

后端 未结 8 859
灰色年华
灰色年华 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:13

    I found I had to uninstall WindowsAzure.Storage and Microsoft.Data.Services.Client. Then (using Package Manager Console) I installed the specific version of Microsoft.Data.Services.Client:

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

    and then installed a specific version of WindowsAzure.Storage:

    Install-Package WindowsAzure.Storage -Version 2.1.0.4
    

提交回复
热议问题