You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Run Background tasks with WebJobs in Azure App Service
20
18
19
+
This article shows how to deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload an executable or script. For information about how to develop and deploy WebJobs by using Visual Studio, see [Deploy WebJobs using Visual Studio](webjobs-dotnet-deploy-vs.md).
20
+
21
21
## Overview
22
-
WebJobs is a feature of [Azure App Service](https://docs.microsoft.com/azure/app-service/) that enables you to run a program or script in the same context as a web app, API app, or mobile app. There is no additional cost to use WebJobs.
22
+
WebJobs is a feature of [Azure App Service](index.yml) that enables you to run a program or script in the same context as a web app, API app, or mobile app. There is no additional cost to use WebJobs.
23
23
24
24
> [!IMPORTANT]
25
25
> WebJobs is not yet supported for App Service on Linux.
26
26
27
-
This article shows how to deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload an executable or script. For information about how to develop and deploy WebJobs by using Visual Studio, see [Deploy WebJobs using Visual Studio](webjobs-dotnet-deploy-vs.md).
28
-
29
27
The Azure WebJobs SDK can be used with WebJobs to simplify many programming tasks. For more information, see [What is the WebJobs SDK](https://github.com/Azure/azure-webjobs-sdk/wiki).
30
28
31
29
Azure Functions provides another way to run programs and scripts. For a comparison between WebJobs and Functions, see [Choose between Flow, Logic Apps, Functions, and WebJobs](../azure-functions/functions-compare-logic-apps-ms-flow-webjobs.md).
@@ -178,6 +176,8 @@ You can enter a [NCRONTAB expression](../azure-functions/functions-bindings-time
178
176
179
177
To learn more, see [Scheduling a triggered WebJob](webjobs-dotnet-deploy-vs.md#scheduling-a-triggered-webjob).
Copy file name to clipboardExpand all lines: articles/app-service/webjobs-dotnet-deploy-vs.md
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,12 @@
1
1
---
2
2
title: Develop and deploy WebJobs using Visual Studio - Azure
3
3
description: Learn how to develop and deploy Azure WebJobs to Azure App Service using Visual Studio.
4
-
services: app-service
5
-
documentationcenter: ''
6
4
author: ggailey777
7
-
manager: jeconnoc
8
-
5
+
manager: gwallace
9
6
ms.assetid: a3a9d320-1201-4ac8-9398-b4c9535ba755
10
7
ms.service: app-service
11
-
ms.devlang: dotnet
12
-
ms.topic: article
13
-
ms.tgt_pltfrm: na
8
+
ms.topic: conceptual
14
9
ms.custom: vs-azure
15
-
ms.workload: azure-vs
16
10
ms.date: 02/18/2019
17
11
ms.author: glenga
18
12
ms.reviewer: david.ebbo;suwatch;pbatum;naren.soni
@@ -227,6 +221,8 @@ When you [create a WebJob from the Azure portal](webjobs-create.md), the setting
227
221
228
222
WebJobs uses the same CRON expressions for scheduling as the timer trigger in Azure Functions. To learn more about CRON support, see the [timer trigger reference article](../azure-functions/functions-bindings-timer.md#ncrontab-expressions).
> The default time zone used to run CRON expressions is Coordinated Universal Time (UTC). To have your CRON expression run based on another time zone, create an app setting for your function app named WEBSITE_TIME_ZONE. To learn more, see [NCRONTAB time zones](../articles/azure-functions/functions-bindings-timer.md#ncrontab-time-zones).
0 commit comments