gpt4 book ai didi

azure-functions - Azure Function 2 - 缺少 using 指令或程序集引用?

转载 作者:行者123 更新时间:2023-12-04 01:13:17 26 4
gpt4 key购买 nike

我使用 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?)

最佳答案

正如 Nkosi 所说,你可以去 Azure Queue storage bindings for Azure Functions检查您是否配置了绑定(bind)扩展。

为了您的信息,我认为您需要安装 Microsoft.Azure.WebJobs.Extensions.Storage NuGet 包,版本 3.x。然后一切都会正常工作。

关于azure-functions - Azure Function 2 - 缺少 using 指令或程序集引用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54916635/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com