Skip to content

Commit eca7ce1

Browse files
committed
Changes from feedback
1 parent 33bdc5f commit eca7ce1

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

articles/app-service/webjobs-create.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ adobe-target-content: ./webjobs-create-ieux
1919

2020
This article explains how to deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload an executable or script. WebJobs is a feature of [Azure App Service](index.yml) that allows you to run a program or script in the same instance as a web app. All app service plans support WebJobs. There's no extra cost to use WebJobs.
2121

22-
You can use the [Azure WebJobs SDK](https://github.com/Azure/azure-webjobs-sdk/wiki) with WebJobs to simplify many programming tasks.
23-
2422
> [!NOTE]
2523
> WebJobs for *Windows container*, *Linux code*, and *Linux container* is in preview. WebJobs for Windows code is generally available and not in preview.
2624
@@ -119,7 +117,7 @@ when making changes in one don't forget the other two.
119117

120118
| Setting | Sample value | Description  |
121119
| ------------ | ----------------- | ------------ |
122-
| **Name** | myContinuousWebJob | A name that's unique within an App Service app. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`. |
120+
| **Name** | myContinuousWebJob | A unique WebJob name. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`. |
123121
| **File Upload** | ConsoleApp.zip | A *.zip* file that contains your executable or script file and any supporting files needed to run the program or script. The supported executable or script file types are listed in the [Supported file types](#acceptablefiles) section. |
124122
| **Type** | Continuous | The [WebJob types](#webjob-types) are described earlier in this article. |
125123
| **Scale** | Multi Instance | Available only for Continuous WebJobs. Determines whether the program or script runs on all instances or one instance. The option to run on multiple instances doesn't apply to the Free or Shared [pricing tiers](https://azure.microsoft.com/pricing/details/app-service/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio). |
@@ -149,7 +147,7 @@ when making changes in one don't forget the other two.
149147

150148
| Setting | Sample value | Description  |
151149
| ------------ | ----------------- | ------------ |
152-
| **Name** | myTriggeredWebJob | A name that's unique within an App Service app. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`.|
150+
| **Name** | myTriggeredWebJob | A unique WebJob name. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`. |
153151
| **File Upload** | ConsoleApp1.zip | A *.zip* file that contains your executable or script file and any supporting files needed to run the program or script. The supported executable or script file types are listed in the [Supported file types](#acceptablefiles) section. |
154152
| **Type** | Triggered | The [WebJob types](#webjob-types) are described previously in this article. |
155153
| **Triggers** | Manual | |
@@ -181,7 +179,7 @@ when making changes in one don't forget the other two.
181179

182180
| Setting | Sample value | Description  |
183181
| ------------ | ----------------- | ------------ |
184-
| **Name** | myScheduledWebJob | A name that's unique within an App Service app. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`. |
182+
| **Name** | myScheduledWebJob | A unique WebJob name. Must start with a letter or a number and must not contain special characters other than `"-"` and `"_"`. |
185183
| **File Upload** | ConsoleApp.zip | A *.zip* file that contains your executable or script file and any supporting files needed to run the program or script. The supported executable or script file types are listed in the [Supported file types](#acceptablefiles) section. |
186184
| **Type** | Triggered | The [WebJob types](#webjob-types) are described earlier in this article. |
187185
| **Triggers** | Scheduled | For the scheduling to work reliably, enable the Always On feature. Always On is available only in the Basic, Standard, and Premium pricing tiers.|

0 commit comments

Comments
 (0)