Home > OS >  Azure function, Microsoft.WindowsAzure.Storage missing
Azure function, Microsoft.WindowsAzure.Storage missing

Time:12-20

I had a working http triggered Azure function a year ago. Not anymore. I created new azure function (runtime ~4) and now I can not compile it in Azure editor. It says "[Error] run.csx(2,1): error CS0006: Metadata file 'Microsoft.WindowsAzure.Storage' could not be found". It is simply geting list of files from my Azure BLOB storage. I am loosing my mind, I don't know what to cofigure, or how to change my code. Is Microsoft.WindowsAzure.Storage no loner supported? I was wondering about lowering my runtime version, but it is grey-out (I can not change it). I read this enter image description here

enter image description here

OUTPUT

Files in Azure Storage

enter image description here

enter image description here

CodePudding user response:

thanks for your answer but I created new Azure Function APP with .net 3.1 which solved my issue

  • Related