如何使用来自 VSCode 的指令在 Ubuntu 上使用 C# 使用 Azure
How to use Azure using directive from VSCode on Ubuntu w/ C#
当尝试在 Program.cs 中添加以下 using 指令时:
using Azure.Messaging.EventHubs.Producer;
它说
The type or namespace name 'Azure' could not be found (are you missing a using directive or an assembly reference?)
我已经在项目中添加了大部分 Azure 扩展和 运行 dotnet restore
,但仍然无法正常工作。我如何在 linux 上添加这个 using-directive/assembly-reference?
这是 运行在 ubuntu 机器 (20.04) 上使用 VS 代码和 dotnettt 核心 SKD 5.0
根据@manivi 的评论,我将其转换为帮助其他社区成员的答案。
添加 this 软件包后,希望它能解决您的问题。
当尝试在 Program.cs 中添加以下 using 指令时:
using Azure.Messaging.EventHubs.Producer;
它说
The type or namespace name 'Azure' could not be found (are you missing a using directive or an assembly reference?)
我已经在项目中添加了大部分 Azure 扩展和 运行 dotnet restore
,但仍然无法正常工作。我如何在 linux 上添加这个 using-directive/assembly-reference?
这是 运行在 ubuntu 机器 (20.04) 上使用 VS 代码和 dotnettt 核心 SKD 5.0
根据@manivi 的评论,我将其转换为帮助其他社区成员的答案。
添加 this 软件包后,希望它能解决您的问题。