gpt4 book ai didi

azure - 使用 Visual Studio Code 在本地运行和调试 2 Azure 函数

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

我使用 Visual Studio Code 在本地开发和调试 .net core azure 函数。

我成功地能够在本地运行 vs code 和 Azure 函数的一个实例,但我无法在本地运行 2 个不同的 Azure 函数,主要是因为我无法决定用于公开 azure 函数的端口 (7071 )。

我已经找到了如何使用 Visual Studio 2019 执行此操作,但对于 Visual Studio Code 却一无所知...

最佳答案

端口在本地设置文件中定义,您所要做的就是将其中一项功能更改为不同的端口号:

{
"IsEncrypted": false,
"Values": {
"FUNCTIONS_WORKER_RUNTIME": "<language worker>",
"AzureWebJobsStorage": "<connection-string>",
"AzureWebJobsDashboard": "<connection-string>",
"MyBindingConnection": "<binding-connection-string>",
"AzureWebJobs.HttpExample.Disabled": "true"
},
"Host": {
"LocalHttpPort": 7071,
"CORS": "*",
"CORSCredentials": false
},
"ConnectionStrings": {
"SQLConnectionString": "<sqlclient-connection-string>"
}
}

https://learn.microsoft.com/en-us/azure/azure-functions/functions-develop-vs-code?tabs=csharp#local-settings-file

关于azure - 使用 Visual Studio Code 在本地运行和调试 2 Azure 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65243051/

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