Hi Experts,
I've written a new workflow activity and I'm trying to access files from Azure blob.
I've provided the connection string to the storage account on Azure, and I'm then retrieving the container using CloudBlobClient class.
Entity blobnote = service.Retrieve("annotation", ent.Id, new ColumnSet(true));
string _blobfilename = (blobnote.Attributes["annotationid"].ToString() + "_" + blobnote.Attributes["filename"].ToString());
I've installed the nuget package for Windows.Azure.Storage(9.3.2), but when the workflow activity executes, it fails with the below error:
"could not load file or assembly 'microsoft.windowsazure.storage, version=9.3.2.0, culture=neutral, publickeytoken=31bf3856ad364e35' or one of its dependencies. the system cannot find the file specified."
Can you please help me understand what I'm I missing here?
Thanks!!