在 Kudu 中找不到 Azure webjob 的 App.config
Can't find Azure webjob's App.config in Kudu
我有一个 Azure webjob 运行,它是一个 .NET 4.6.1 控制台应用程序。
我的项目有一个 App.config 文件,但是我在 Kudu 中找不到它。
我想看看正在使用什么设置。
我在 Kudu 哪里可以找到它?
app.config
文件将不会部署到 Azure。
- 我们无法直接从 Azure WebJobs 访问应用程序设置,我们可以访问 AppSettings 在 Azure 门户中。
- WebJobs是
console app
,它使用系统中存储的环境变量,不同于AppSettings Azure 门户。
- Azure WebJobs 使用
environment variables
而不是 configuration files
。
更多信息请参考Configuring Azure Web Jobs and 。
我有一个 Azure webjob 运行,它是一个 .NET 4.6.1 控制台应用程序。
我的项目有一个 App.config 文件,但是我在 Kudu 中找不到它。
我想看看正在使用什么设置。
我在 Kudu 哪里可以找到它?
app.config
文件将不会部署到 Azure。- 我们无法直接从 Azure WebJobs 访问应用程序设置,我们可以访问 AppSettings 在 Azure 门户中。
- WebJobs是
console app
,它使用系统中存储的环境变量,不同于AppSettings Azure 门户。 - Azure WebJobs 使用
environment variables
而不是configuration files
。
更多信息请参考Configuring Azure Web Jobs and