Azure Functions v3 支持哪个 WindowsAzure.Storage 版本?

What version of WindowsAzure.Storage is supported by Azure Functions v3?

我正在使用 Azure Functions V3 和 运行dot net 3.1 的时间堆栈,并使用 WindowsAzure.Storage 9.3.3 版的 SDK 处理存储 Blob 的业务逻辑。当我 运行 函数应用程序时,出现此错误:

System.MissingMethodException: 'Method not found: 'System.Collections.Generic.IEnumerable`1<Microsoft.WindowsAzure.Storage.Blob.IListBlobItem> Microsoft.WindowsAzure.Storage.Blob.CloudBlobContainer.ListBlobs(System.String, Boolean, Microsoft.WindowsAzure.Storage.Blob.BlobListingDetails, Microsoft.WindowsAzure.Storage.Blob.BlobRequestOptions, Microsoft.WindowsAzure.Storage.OperationContext)'.'

我想知道什么版本的 WindowsAzure.Storage SDK 与 Azure Functions V3 兼容。如有任何帮助,我们将不胜感激。

对于 .NET 应用程序,新扩展版本还更改了您可以绑定的类型,将 WindowsAzure.StorageMicrosoft.Azure.Storage 中的类型替换为 Azure.Storage.Blobs and also notified in the following documentation 中的较新类型。

这个 SO 线程可以帮助您

如果您使用 WindowsAzure.Storage.Queue 和 .Net 3.1,请参考