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
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-create-your-first-function-visual-studio.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ To complete this tutorial:
34
34
35
35
* Install [Visual Studio 2017](https://azure.microsoft.com/downloads/) and ensure that the **Azure development** workload is also installed.
36
36
37
-
*If you installed the Azure development workload with Visual Studio 2017 version 15.4 or earlier, you will need to [update your Azure Functions tools](functions-develop-vs.md#check-your-tools-version).
37
+
*Make sure you have the [latest Azure Functions tools](functions-develop-vs.md#check-your-tools-version).
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-develop-vs.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,13 +88,13 @@ The Functions runtime uses an Azure Storage account internally. For all trigger
88
88
89
89
[!INCLUDE [Note on local storage](../../includes/functions-local-settings-note.md)]
90
90
91
-
To set the storage account connection string:
91
+
To set the storage account connection string:
92
92
93
93
1. In Visual Studio, open **Cloud Explorer**, expand **Storage Account** > **Your Storage Account**, then select **Properties** and copy the **Primary Connection String** value.
94
94
95
95
2. In your project, open the local.settings.json file and set the value of the **AzureWebJobsStorage** key to the connection string you copied.
96
96
97
-
3. Repeat the previous step to add unique keys to the **Values** array for any other connections required by your functions.
97
+
3. Repeat the previous step to add unique keys to the **Values** array for any other connections required by your functions.
98
98
99
99
## Create a function
100
100
@@ -157,7 +157,7 @@ As with triggers, input and output bindings are added to your function as bindin
157
157
}
158
158
}
159
159
```
160
-
TheconnectiontoQueuestorageisobtainedfromthe `AzureWebJobsStorage` setting. Formoreinformation, seethereferencearticlefor the specific binding.
160
+
TheconnectiontoQueuestorageisobtainedfromthe `AzureWebJobsStorage` setting. Formoreinformation, seethereferencearticlefor the specific binding.
161
161
162
162
[!INCLUDE [Supported triggers and bindings](../../includes/functions-bindings.md)]
Copy file name to clipboardExpand all lines: includes/functions-vstools-create.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ The Azure Functions project template in Visual Studio creates a project that can
16
16
17
17
2. In the **New Project** dialog, select **Installed**, expand **Visual C#** > **Cloud**, select **Azure Functions**, type a **Name** for your project, and click **OK**. The function app name must be valid as a C# namespace, so don't use underscores, hyphens, or any other nonalphanumeric characters.
18
18
19
-

19
+

20
20
21
21
3. Use the settings specified in the table that follows the image.
|**App Name**| Globally unique name | Name that uniquely identifies your new function app. |
24
28
|**Subscription**| Choose your subscription | The Azure subscription to use. |
25
29
|**[Resource Group](../articles/azure-resource-manager/resource-group-overview.md)**| myResourceGroup | Name of the resource group in which to create your function app. Choose **New** to create a new resource group.|
26
-
|**[App Service Plan](../articles/azure-functions/functions-scale.md)**| Consumption plan | Make sure to choose the **Consumption** under **Size** after you click **New** to create a new plan. Also, choose a **Location** in a [region](https://azure.microsoft.com/regions/) near you or near other services your functions access. |
27
-
28
-
>[!NOTE]
29
-
>An Azure storage account is required by the Functions runtime. Because of this, a new Azure Storage account is created for you when you create a function app.
30
+
|**[App Service Plan](../articles/azure-functions/functions-scale.md)**| Consumption plan | Make sure to choose the **Consumption** under **Size** after you click **New** to create a plan. Also, choose a **Location** in a [region](https://azure.microsoft.com/regions/) near you or near other services your functions access. |
31
+
|**[Storage Account](../articles/storage/common/storage-create-storage-account.md#create-a-storage-account)**| General purpose storage account | An Azure storage account is required by the Functions runtime. Click **New** to create a general purpose storage account, or use an existing one. |
30
32
31
33
4. Click **Create** to create a function app and related resources in Azure with these settings and deploy your function project code.
32
34
33
35
5. After the deployment is complete, make a note of the **Site URL** value, which is the address of your function app in Azure.
34
36
35
-

0 commit comments