Hi
I have a vanilla .NET Core 3.1 app that I have hosted as a WebJob in Azure App Service.
How do I set the environment name so that it is surfaced to the webjob context when I do -
hostContext.HostingEnvironment.EnvironmentName ?
Hi
I have a vanilla .NET Core 3.1 app that I have hosted as a WebJob in Azure App Service.
How do I set the environment name so that it is surfaced to the webjob context when I do -
hostContext.HostingEnvironment.EnvironmentName ?
Sorry, but what is the setting name that I need to set so that it sets the WebJobs environment name?
Looks like you still use ASPNETCORE_ENVIRONMENT and set it to Production, Development, or some custom environment monniker you may be using.
https://dotnetcoretutorials.com/2018/10/10/azure-webjobs-in-net-core-part-2/
I believe this can be done via the Azure portal.
In the Azure portal, search for and select App Services, and then select your app.
In the app's left menu, select Configuration > Application settings.
Remember setting app settings in App Service are like setting them in appSettings in Web.config or appsettings.json, but the values in App Service override the ones in Web.config or appsettings.json. You can keep development settings (for example, local MySQL password) in Web.config or appsettings.json, but production secrets (for example, Azure MySQL database password) safe in App Service. Read this doc for more info.
Hope that helps. Please let us know if you have further questions
Thanks,
Grace
15 people are following this question.