我使用Visual Studio 2017创建了我的Azure Function v2。
我创建了一个新的队列触发器功能。
using System;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Host;
using Microsoft.Extensions.Logging;
namespace Functions
{
public static class queue
{
[FunctionName("queue")]
public static void Run([QueueTrigger("myqueue-items", Connection = "test")]string myQueueItem, ILogger log)
{
log.LogInformation($"C# Queue trigger function processed: {myQueueItem}");
}
}
}
但是找不到QueueTrigger的程序集
Error CS0246 The type or namespace name 'QueueTriggerAttribute' could not be found (are you missing a using directive or an assembly reference?)
Error CS0246 The type or namespace name 'QueueTrigger' could not be found (are you missing a using directive or an assembly reference?)
Error CS0246 The type or namespace name 'Connection' could not be found (are you missing a using directive or an assembly reference?)
答案 0 :(得分:1)
如Nkosi所述,您可以转到Azure Queue storage bindings for Azure Functions检查是否已配置绑定扩展。
对于您的信息,我认为您需要安装Microsoft.Azure.WebJobs.Extensions.Storage
NuGet软件包,版本3.x。然后一切都会正常。