I am implementing "AzureBlobStorage" by referencing "Microsoft.Bot.Builder.Azure", but when I initialize I get an error with "CloudStorageAccount".
Error CS7069 Reference to type 'CloudStorageAccount' claims it is defined in 'Microsoft.Azure.Storage.Common', but it could not be found QBotSolution
Solution Explorer:
It looks like Visual Studio can't determine which package you're trying to use. If you're just looking to do traditional bot state management, you should remove these packages:
For bot Blob storage, you should only need Microsoft.Bot.Builder.Azure
, so be sure to include using Microsoft.Bot.Builder.Azure;
at the top of whatever file you're trying to use this in.
Here's a few good references: