英文:
Making Azure Functions working with .NET 7.x and Azure Functions Runtime 4.x
问题
我最初创建了一个一年前的 .NET Core 3.1 版本的 Azure Function
项目。它已升级到 .NET 6.0,现在想要升级到 .NET 7.0。
我尝试在 Visual Studio 2022
中创建一个 Azure Function
项目,但只看到 隔离的工作进程
选项。Azure Function
在 dotnet
模式下工作吗?
英文:
I originally created a .NET Core 3.1 version of the Azure Function
project a year ago. It was upgraded to .NET 6.0 and now wants to upgrade to .NET 7.0.
I tried to create an Azure Function
project in Visual Studio 2022
, but see only isolated worker process
option. Does Azure Function
work in dotnet
mode?
答案1
得分: 1
我尝试在 Visual Studio 2022 中创建一个 Azure 函数项目,但只看到了隔离的工作进程选项。Azure 函数可以在 dotnet 模式下工作吗?
如果你想使用 .Net 7 进行开发,你必须使用 隔离的工作进程 Azure 函数,如此处所示:链接。
英文:
> I tried to create an Azure Function project in Visual Studio 2022, but see only isolated worker process option. Does Azure Function work in dotnet mode?
If you want to develop using .Net 7 you are bound to isolated worker process Azure Functions as shown here:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论