Skip to content

Commit d84fc5e

Browse files
authored
Merge pull request #42575 from ggailey777/current
Freshness updates to VS quickstart
2 parents f7ab204 + ed7b774 commit d84fc5e

8 files changed

+15
-13
lines changed

articles/azure-functions/functions-create-your-first-function-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To complete this tutorial:
3434

3535
* Install [Visual Studio 2017](https://azure.microsoft.com/downloads/) and ensure that the **Azure development** workload is also installed.
3636

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).
3838

3939
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
4040

articles/azure-functions/functions-develop-vs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ The Functions runtime uses an Azure Storage account internally. For all trigger
8888

8989
[!INCLUDE [Note on local storage](../../includes/functions-local-settings-note.md)]
9090

91-
To set the storage account connection string:
91+
To set the storage account connection string:
9292

9393
1. In Visual Studio, open **Cloud Explorer**, expand **Storage Account** > **Your Storage Account**, then select **Properties** and copy the **Primary Connection String** value.
9494

9595
2. In your project, open the local.settings.json file and set the value of the **AzureWebJobsStorage** key to the connection string you copied.
9696

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.
9898

9999
## Create a function
100100

@@ -157,7 +157,7 @@ As with triggers, input and output bindings are added to your function as bindin
157157
}
158158
}
159159
```
160-
The connection to Queue storage is obtained from the `AzureWebJobsStorage` setting. For more information, see the reference article for the specific binding.
160+
The connection to Queue storage is obtained from the `AzureWebJobsStorage` setting. For more information, see the reference article for the specific binding.
161161

162162
[!INCLUDE [Supported triggers and bindings](../../includes/functions-bindings.md)]
163163

includes/functions-vstools-create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The Azure Functions project template in Visual Studio creates a project that can
1616

1717
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.
1818

19-
![New project dialog to create a function in Visual Studio](./media/functions-vstools-create/functions-vstools-add-new-project.png)
19+
![New project dialog to create a function in Visual Studio](./media/functions-vstools-create/functions-vstools-add-new-project.png)
2020

2121
3. Use the settings specified in the table that follows the image.
2222

includes/functions-vstools-publish.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,28 @@ ms.author: glenga
1010
ms.custom: include file
1111
---
1212

13-
1. In **Solution Explorer**, right-click the project and select **Publish**. Choose **Create New** and then **Publish**.
13+
1. In **Solution Explorer**, right-click the project and select **Publish**.
14+
15+
2. Select **Azure Function App**, choose **Create New**, and then select **Publish**.
16+
17+
![Pick a publish target](./media/functions-vstools-publish/functions-vstools-create-new-function-app.png)
1418

1519
2. If you haven't already connected Visual Studio to your Azure account, select **Add an account...**.
1620

17-
3. In the **Create App Service** dialog, use the **Hosting** settings as specified in the following table:
21+
3. In the **Create App Service** dialog, use the **Hosting** settings as specified in the table below the image:
1822

19-
![Azure local runtime](./media/functions-vstools-publish/functions-vstools-publish.png)
23+
![Create App Service dialog](./media/functions-vstools-publish/functions-vstools-publish.png)
2024

2125
| Setting | Suggested value | Description |
2226
| ------------ | ------- | -------------------------------------------------- |
2327
| **App Name** | Globally unique name | Name that uniquely identifies your new function app. |
2428
| **Subscription** | Choose your subscription | The Azure subscription to use. |
2529
| **[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. |
3032

3133
4. Click **Create** to create a function app and related resources in Azure with these settings and deploy your function project code.
3234

3335
5. After the deployment is complete, make a note of the **Site URL** value, which is the address of your function app in Azure.
3436

35-
![Azure local runtime](./media/functions-vstools-publish/functions-vstools-publish-profile.png)
37+
![Publish success message](./media/functions-vstools-publish/functions-vstools-publish-profile.png)
2.04 KB
Loading
-68.9 KB
Loading
11.2 KB
Loading
-42 KB
Loading

0 commit comments

Comments
 (0)