gpt4 book ai didi

c# - 找不到“The type or namespace ‘BlobTrigger’”

转载 作者:行者123 更新时间:2023-12-02 10:41:21 24 4
gpt4 key购买 nike

所以我对 C# 中的 Azure 函数不熟悉,我正在尝试使用 BlobStorage 触发器在 Visual Studio 中创建。在遵循模板时,我得到了一个如下所示的文件:

using System;
using System.IO;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Host.Triggers;
using Microsoft.Extensions.Logging;

namespace BasicAzureFunction
{
public static class Function1
{
[FunctionName("Function1")]
public static void Run([BlobTrigger("samples-workitems/{name}", Connection = "")]Stream myBlob, string name, ILogger log)
{
log.LogInformation($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Length} Bytes");
}
}
}

我总是收到此错误:

The type or namespace name 'BlobTriggerAttribute' could not be found (are you missing a using directive or an assembly reference?)

我很确定我拥有所有包(这实际上是模板)。我错过了什么?

使用.Net Core

提前致谢!

最佳答案

我有一个也使用 BlobTrigger 的 Azure 函数,并且它对我来说工作正常。

我有这个命名空间,但在您共享的代码中没有看到

使用 Microsoft.WindowsAzure.Storage.Blob;

我的项目中有这些 Nuget 包

<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="3.0.0" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.24" />

关于c# - 找不到“The type or namespace ‘BlobTrigger’”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61493675/

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