- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在 azure 函数(v2、c#)中,有两个环境变量可用于标识当前环境的名称。
AZURE_FUNCTIONS_ENVIRONMENT
ASPNETCORE_ENVIRONMENT
我计划使用 AZURE_FUNCTIONS_ENVIRONMENT
,我想知道是否有理由选择其中之一?
就两者的行为而言,这是我发现的:
AZURE_FUNCTIONS_ENVIRONMENT
由函数主机/运行时在本地设置为 Development
。在 azure 中,它不会自动设置为 Production
。您可以在 azure 的“应用程序设置”中进行设置。ASPNETCORE_ENVIRONMENT
不是由本地或 Azure 中的函数主机/运行时设置的。我还提出了github issue几周前就此事提出过,但没有得到回应。我希望我能在这里得到答案。
最佳答案
添加 official answer from github issue为了大家的利益,这里:
You'll want to use
AZURE_FUNCTIONS_ENVIRONMENT
. The Functions runtime that powers a Function app on Azure is the WebHost project in this repo. As the host is initializing, it looks for theAZURE_FUNCTIONS_ENVIRONMENT
app setting (asEnvironmentSettingNames.EnvironmentNameKey
) and passes it to the IWebHostBuilder. Using onlyASPNETCORE_ENVIRONMENT
can lead to desired behavior changes and telemetry being missed.
关于c# - AZURE_FUNCTIONS_ENVIRONMENT 与 ASPNETCORE_ENVIRONMENT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56484241/
在 azure 函数(v2、c#)中,有两个环境变量可用于标识当前环境的名称。 AZURE_FUNCTIONS_ENVIRONMENT ASPNETCORE_ENVIRONMENT 我计划使用 AZU
我是一名优秀的程序员,十分优秀!