I have an Azure webjob running which is a .NET 4.6.1 console application.
My project has an App.config file, however I can't find it in Kudu.
I'd like to see what settings are being used.
Where can I find it in Kudu?
I have an Azure webjob running which is a .NET 4.6.1 console application.
My project has an App.config file, however I can't find it in Kudu.
I'd like to see what settings are being used.
Where can I find it in Kudu?
app.config
file will not be deployed to Azure.console app
, it uses the environment variables stored in the system, which is different from the AppSettings in the Azure portal.environment variables
instead of configuration files
.Please refer Configuring Azure Web Jobs and SO Thread for more information.