Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not load file or assembly 'Microsoft.WindowsAzure.Storage' or one of its dependencies. When running chat bot C#

I am trying to run my chat bot after I made some modifications within Visual Studio. My code works correctly when run locally with the bot framework emulator, but when published to my chat bot stored on Azure I get the error:

Could not load file or assembly 'Microsoft.WindowsAzure.Storage' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

Any help or insight into this problem would be much appriciated!

like image 865
user10190803 Avatar asked Aug 10 '18 08:08

user10190803


1 Answers

Open nuget console and paste in to install the missing package:

Install-Package WindowsAzure.Storage -Version 9.3.1
like image 187
Matěj Štágl Avatar answered Oct 02 '22 02:10

Matěj Štágl