我的 Azure 函数正在使用哪个 dotnet 运行时版本?

What dotnet runtime version is being used by my Azure Function?

我在 Azure 上有一个 Azure Durable Function 运行。它有:

我们遇到了一个我之前发现的错误 reported on the dotnet/runtime repo. The issue has since been fixed (1 2) and the fix was released in version 3.1.4。然而,我们仍然看到错误,这让我认为正在使用的运行时是一个旧版本。我找不到任何关于在实际执行我们函数的 VM 上使用哪个 minor/patch 版本的运行时的信息。

有办法解决这个问题吗?

函数应用 运行 在 Azure 应用服务平台中并由其维护。因此,您的函数应用程序可以访问 Azure 核心网络托管平台的大部分功能,包括高级工具 (Kudu) 和控制台:

可能找出版本的最简单方法是打开控制台并键入 dotnet --version

Read more about how to access the console