v2函数无法加载类型'Microsoft.Azure.WebJobs.QueueTriggerAttribute'

时间:2018-08-18 15:23:31

标签: azure-functions

曾经可以使用的V2应用程序。现在尝试运行它时,出现以下错误:

Microsoft.Azure.WebJobs.Host: Error indexing method 'MyClass.Run'. System.Private.CoreLib: Could not load type 'Microsoft.Azure.WebJobs.QueueTriggerAttribute' from assembly 'Microsoft.Azure.WebJobs, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null'.


也可能显示Microsoft.Azure.WebJobs.BlobTriggerAttributeMicrosoft.Azure.WebJobs.BlobAttributeMicrosoft.Azure.WebJobs.TableAttributeMicrosoft.Azure.WebJobs.QueueAttribute

1 个答案:

答案 0 :(得分:17)

最近发布了Azure Functions v2预览版detailed here,该版本需要依赖于存储的触发器和绑定来引入其他Azure存储扩展。模板应自动反映此更改。

要投入使用,请获取Microsoft.Azure.WebJobs.Extensions.Storage Nuget软件包。

对于非C#应用程序,运行func extensions install应该插入正确的存储扩展名。