gpt4 book ai didi

c# - 命名空间 'Azure' 中不存在类型或命名空间 'Microsoft' - Visual Studio 2022

转载 作者:行者123 更新时间:2023-12-03 06:24:45 24 4
gpt4 key购买 nike

我刚刚安装了 Visual Studio 2022,正在尝试开发 BlobTrigger Azure 函数。作为创建的默认类的一部分,包含以下命名空间:

using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Host;
using Microsoft.Extensions.Logging;

但是,每条下方都会出现红线,并显示以下消息:

The type or namespace 'Azure' does not exist in the namespace 'Microsoft' 

关于我可能需要安装什么才能使其正常工作有什么想法吗?

最佳答案

The type or namespace 'Azure' does not exist in the namespace 'Microsoft'.

您应该在 Visual Studio 中安装这些软件包才能在应用程序中使用它们。

  • 要安装这些软件包,请转到“工具”>“NuGet 软件包管理器”>“软件包管理器控制台”,运行以下给定的命令。
Install-Package Microsoft.Azure.WebJobs
Install-Package Microsoft.Azure.WebJobs.Host
Install-Package Microsoft.Extensions.Logging

enter image description here

或者直接安装软件包:转到“工具”>“NuGet 包管理器”>“管理解决方案的 Nuget 包”。

enter image description here

<小时/>

我创建了一个示例 Blob 触发器 Azure 函数。

我通过删除环境中安装的软件包重现了该问题,并且遇到了相同的错误。

enter image description here

在应用程序中安装以下软件包后,我可以修复错误并获得预期的结果。

enter image description here

输出:

enter image description here

enter image description here

关于c# - 命名空间 'Azure' 中不存在类型或命名空间 'Microsoft' - Visual Studio 2022,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75629036/

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