Skip to content

Commit 6a40048

Browse files
author
Glenn Gailey
committed
Revert "Add functions-create-your-first-function-visual-studio"
This reverts commit 92d1d80.
1 parent be1cf37 commit 6a40048

File tree

7 files changed

+16
-17
lines changed

7 files changed

+16
-17
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Quickstart: Create your first function in Azure using Visual Studio"
3-
description: In this quickstart, you learn how to create and publish an HTTP triggur Azure Function by using Visual Studio.
3+
description: In this quickstart, you learn how to create and publish an HTTP-triggered Azure Function by using Visual Studio.
44
ms.assetid: 82db1177-2295-4e39-bd42-763f6082e796
55
ms.topic: quickstart
66
ms.date: 03/06/2020
@@ -10,7 +10,7 @@ ms.custom: mvc, devcenter, vs-azure, 23113853-34f2-4f
1010

1111
Azure Functions lets you run your code in a serverless environment without having to first create a VM or publish a web application.
1212

13-
In this quickstart, you learn how to use Visual Studio 2019 to locally create and test a "hello world" HTTP trigger C# function app, which you then publish to Azure.
13+
In this quickstart, you learn how to use Visual Studio 2019 to locally create and test a "hello world" HTTP-triggered C# function app, which you then publish to Azure.
1414

1515
![Function localhost response in the browser](./media/functions-create-your-first-function-visual-studio/functions-create-your-first-function-visual-studio-browser-local-final.png)
1616

@@ -32,7 +32,7 @@ Visual Studio creates a project and class that contains boilerplate code for the
3232

3333
Expand the capabilities of your function with input and output bindings by applying the appropriate attributes to the method. For more information, see the [Triggers and bindings](functions-dotnet-class-library.md#triggers-and-bindings) section of the [Azure Functions C# developer reference](functions-dotnet-class-library.md).
3434

35-
Now that you've created your function project and an HTTP trigger function, you can test it on your local computer.
35+
Now that you've created your function project and an HTTP-triggered function, you can test it on your local computer.
3636

3737
## Run the function locally
3838

@@ -52,7 +52,7 @@ Before you can publish your project, you must have a function app in your Azure
5252

5353
1. Copy the base URL of the function app from the **Publish** profile page. Replace the `localhost:port` portion of the URL you used to test the function locally with the new base URL. Append the query string `?name=<YOUR_NAME>` to this URL and run the request.
5454

55-
The URL that calls your HTTP trigger function is in the following format:
55+
The URL that calls your HTTP triggered function is in the following format:
5656

5757
`http://<APP_NAME>.azurewebsites.net/api/<FUNCTION_NAME>?name=<YOUR_NAME>`
5858

@@ -66,7 +66,7 @@ Before you can publish your project, you must have a function app in your Azure
6666

6767
## Next steps
6868

69-
In this quickstart, you used Visual Studio to create and publish a C# function app in Azure with a simple HTTP trigger function.
69+
In this quickstart, you used Visual Studio to create and publish a C# function app in Azure with a simple HTTP triggered function.
7070

7171
Advance to the next article to learn how to add an Azure Storage queue binding to your function:
7272
> [!div class="nextstepaction"]

includes/functions-vstools-create.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ services: functions
55
author: ggailey777
66
ms.service: azure-functions
77
ms.topic: include
8-
ms.date: 03/26/2020
8+
ms.date: 03/06/2020
99
ms.author: glenga
1010
ms.custom: include file
1111
---
1212

1313
The Azure Functions project template in Visual Studio creates a project that you can publish to a function app in Azure. You can use a function app to group functions as a logical unit for easier management, deployment, scaling, and sharing of resources.
1414

15-
1. From the Visual Studio menu, select **File** > **New** > **Project**.
15+
1. In Visual Studio, on the **File** menu, select **New** > **Project**.
1616

17-
1. In **Create a new project**, enter *functions* in the search box, choose the **Azure Functions** template, and then select **Next**.
17+
1. In **Create a new project**, enter *functions* in the search box, and then choose the **Azure Functions** template.
1818

1919
1. In **Configure your new project**, enter a **Project name** for your project, and then select **Create**. The function app name must be valid as a C# namespace, so don't use underscores, hyphens, or any other nonalphanumeric characters.
2020

21-
1. For the **Create a new Azure Function Application** settings, use the values in the following table:
21+
1. For the **New Project - &lt;your project name&gt;** settings, use the values in the following table:
2222

2323
| Setting | Value | Description |
2424
| ------------ | ------- |----------------------------------------- |
@@ -33,4 +33,4 @@ The Azure Functions project template in Visual Studio creates a project that you
3333

3434
Make sure you set the **Access rights** to **Anonymous**. If you choose the default level of **Function**, you're required to present the [function key](../articles/azure-functions/functions-bindings-http-webhook-trigger.md#authorization-keys) in requests to access your function endpoint.
3535

36-
1. Select **Create** to create the function project and HTTP trigger function.
36+
1. Select **OK** to create the function project and HTTP-triggered function.

includes/functions-vstools-publish.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,23 @@ ms.custom: include file
1616

1717
| Option | Description |
1818
| ------------ | -------------------------------------------------- |
19-
| **Azure Functions Consumption Plan** | Create a function app in an Azure cloud environment that runs in a [Consumption plan](../articles/azure-functions/functions-scale.md#consumption-plan). When you use a Consumption plan, you pay only for executions of your functions app. Other hosting plans incur higher costs. If you run in a plan other than a Consumption plan, you must manage the [scaling of your function app](../articles/azure-functions/functions-scale.md).|
20-
| **Create New** | A new function app, with related resources, is created in Azure. <br/>If you choose **Select Existing**, all files in the existing function app in Azure are overwritten by files from the local project. Use this option only when you republish updates to an existing function app. |
19+
| **Azure Function App** | Create a function app in an Azure cloud environment. |
20+
| **Create new** | A new function app, with related resources, is created in Azure. <br/>If you choose **Select Existing**, all files in the existing function app in Azure are overwritten by files from the local project. Use this option only when you republish updates to an existing function app. |
2121
| **Run from package file** | Your function app is deployed using [Zip Deploy](../articles/azure-functions/functions-deployment-technologies.md#zip-deploy) with [Run-From-Package](../articles/azure-functions/run-functions-from-deployment-package.md) mode enabled. This deployment, which results in better performance, is the recommended way of running your functions. <br/>If you don't use this option, make sure to stop your function app project from running locally before you publish to Azure. |
2222

2323
![Pick a publish target](./media/functions-vstools-publish/functions-visual-studio-publish-profile.png)
2424

2525

26-
3. Select **Create Profile**. If you haven't already signed-in to your Azure account from Visual Studio, select **Sign-in**. You can also create a free Azure account.
26+
3. Select **Publish**. If you haven't already signed-in to your Azure account from Visual Studio, select **Sign-in**. You can also create a free Azure account.
2727

28-
4. In **App Service: Create new**, use the values specified in the following table:
28+
4. In **Azure App Service: Create new**, use the values specified in the following table:
2929

3030
| Setting | Value | Description |
3131
| ------------ | ------- | -------------------------------------------------- |
3232
| **Name** | Globally unique name | Name that uniquely identifies your new function app. Accept this name or enter a new name. Valid characters are: `a-z`, `0-9`, and `-`. |
3333
| **Subscription** | Your subscription | The Azure subscription to use. Accept this subscription or select a new one from the drop-down list. |
34-
| **[Resource group](../articles/azure-resource-manager/management/overview.md)** | Name of your resource group | The resource group in which to create your function app. Select an existing resource group from the drop-down list or choose **New** to create a new resource group.|
35-
| **[Hosting Plan](../articles/azure-functions/functions-scale.md)** | Name of your hosting plan | Select **New** to configure a serverless plan. Make sure to choose the **Consumption** under **Size**. When you publish your project to a function app that runs in a [Consumption plan](../articles/azure-functions/functions-scale.md#consumption-plan), you pay only for executions of your functions app. Other hosting plans incur higher costs. If you run in a plan other than **Consumption**, you must manage the [scaling of your function app](../articles/azure-functions/functions-scale.md). |
36-
| **Location** | Location of the app service | Choose a **Location** in a [region](https://azure.microsoft.com/regions/) near you or other services your functions access. |
34+
| **[Resource Group](../articles/azure-resource-manager/management/overview.md)** | Name of your resource group | The resource group in which to create your function app. Select an existing resource group from the drop-down list or choose **New** to create a new resource group.|
35+
| **[Hosting Plan](../articles/azure-functions/functions-scale.md)** | Name of your hosting plan | Select **New** to configure a serverless plan. Make sure to choose the **Consumption** under **Size**. When you publish your project to a function app that runs in a [Consumption plan](../articles/azure-functions/functions-scale.md#consumption-plan), you pay only for executions of your functions app. Other hosting plans incur higher costs. If you run in a plan other than **Consumption**, you must manage the [scaling of your function app](../articles/azure-functions/functions-scale.md). Choose a **Location** in a [region](https://azure.microsoft.com/regions/) near you or other services your functions access. |
3736
| **[Azure Storage](../articles/storage/common/storage-account-create.md)** | General-purpose storage account | An Azure Storage account is required by the Functions runtime. Select **New** to configure a general-purpose storage account. You can also choose an existing account that meets the [storage account requirements](../articles/azure-functions/functions-scale.md#storage-account-requirements). |
3837

3938
![Create App Service dialog](./media/functions-vstools-publish/functions-visual-studio-publish.png)
-10.4 KB
Loading
-541 Bytes
Loading
-4.98 KB
Loading
88.3 KB
Loading

0 commit comments

Comments
 (0)