如何在 visual studio 2019 windows 中创建的 Visual Studio 上的 Mac 代码中本地 运行 多个 C# Az 函数应用程序?

How to run multiple C# Az function apps locally in Visual Studio Code on Mac that are created in visual studio 2019 windows?

堆栈溢出用户。我是 Mac 的开发新手。我无法选择使用 windows 机器,我使用的是基本规格 Macbook pro 2015,这限制了我安装 virtual box 或与 运行 windows 并行。这让我别无选择,只能使用 Mac。任何建议或帮助都会非常感谢:)

Azure Function Core Tools 允许您在本地 运行 您的函数应用程序——这就是 VS Code 在后端执行您的函数的方式。

假设您有多个相互交互的函数,并且根据您实现该交互的方式,您可以通过导航到终端中的目录并 运行ning func start 拥有一个功能 运行 后台运行,然后更新您的第二个功能以引用本地 URI 并开始在 VS Code 中为第二个功能进行调试。

为了 运行 多功能应用程序。经过一番调查,我发现了这些东西。

  1. 安装 azure cli https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-macos
  2. 在 git 中心 https://github.com/Microsoft/vscode-azurefunctions/wiki/Multiple-function-projects 上找到此页面 这对我有用。

感谢您一直以来关注我的问题。