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
This article creates an HTTP triggered function that runs on .NET in-process or isolated worker process with an example of .NET 6. There is also a [Visual Studio Code-based version](create-first-function-vs-code-csharp.md) of this article.
22
+
This article creates an HTTP triggered function that runs on .NET in-process or isolated worker process with an example of .NET 6. There's also a [Visual Studio Code-based version](create-first-function-vs-code-csharp.md) of this article.
23
23
24
24
Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
25
25
@@ -41,7 +41,7 @@ You also need an Azure account with an active subscription. [Create an account f
41
41
42
42
### Prerequisite check
43
43
44
-
Verify your prerequisites, which depend on whether you are using Azure CLI or Azure PowerShell for creating Azure resources:
44
+
Verify your prerequisites, which depend on whether you're using Azure CLI or Azure PowerShell for creating Azure resources:
45
45
46
46
# [Azure CLI](#tab/azure-cli)
47
47
@@ -99,7 +99,7 @@ In Azure Functions, a function project is a container for one or more individual
99
99
func new --name HttpExample --template "HTTP trigger" --authlevel "anonymous"
100
100
```
101
101
102
-
`func new` creates a HttpExample.cs code file.
102
+
`func new` creates an HttpExample.cs code file.
103
103
104
104
### (Optional) Examine the file contents
105
105
@@ -211,7 +211,7 @@ To learn more, see [Azure Functions HTTP triggers and bindings](./functions-bind
211
211
212
212
In the previous example, replace `<STORAGE_NAME>` with the name of the account you used in the previous step, and replace `<APP_NAME>` with a globally unique name appropriate to you. The `<APP_NAME>` is also the default DNS domain for the function app.
213
213
214
-
This command creates a function app running in your specified language runtime under the [Azure Functions Consumption Plan](consumption-plan.md), which is free for the amount of usage you incur here. The command also provisions an associated Azure Application Insights instance in the same resource group, with which you can monitor your function app and view logs. For more information, see [Monitor Azure Functions](functions-monitoring.md). The instance incurs no costs until you activate it.
214
+
This command creates a function app running in your specified language runtime under the [Azure Functions Consumption Plan](consumption-plan.md), which is free for the amount of usage you incur here. The command also creates an associated Azure Application Insights instance in the same resource group, with which you can monitor your function app and view logs. For more information, see [Monitor Azure Functions](functions-monitoring.md). The instance incurs no costs until you activate it.
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-create-your-first-function-visual-studio.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Completing this quickstart incurs a small cost of a few USD cents or less in you
31
31
32
32
+[Visual Studio 2022](https://visualstudio.microsoft.com/vs/). Make sure to select the **Azure development** workload during installation.
33
33
34
-
+[Azure subscription](../guides/developer/azure-developer-guide.md#understanding-accounts-subscriptions-and-billing). If you don't already have an account [create a free one](https://azure.microsoft.com/free/dotnet/) before you begin.
34
+
+[Azure subscription](../guides/developer/azure-developer-guide.md#understanding-accounts-subscriptions-and-billing). If you don't already have an account,[create a free one](https://azure.microsoft.com/free/dotnet/) before you begin.
35
35
36
36
## Create a function app project
37
37
@@ -109,7 +109,7 @@ After you've verified that the function runs correctly on your local computer, i
109
109
110
110
## Publish the project to Azure
111
111
112
-
Visual Studio can publish your local project to Azure. Before you can publish your project, you must have a function app in your Azure subscription. If you don't already have a function app in Azure, Visual Studio publishing creates one for you the first time you publish your project. In this article you create a function app and related Azure resources.
112
+
Visual Studio can publish your local project to Azure. Before you can publish your project, you must have a function app in your Azure subscription. If you don't already have a function app in Azure, Visual Studio publishing creates one for you the first time you publish your project. In this article, you create a function app and related Azure resources.
113
113
114
114
[!INCLUDE [Publish the project to Azure](../../includes/functions-vstools-publish.md)]
115
115
@@ -135,7 +135,7 @@ Visual Studio can publish your local project to Azure. Before you can publish yo
135
135
136
136
*Resources* in Azure refer to function apps, functions, storage accounts, and so forth. They're grouped into *resource groups*, and you can delete everything in a group by deleting the group.
137
137
138
-
You created Azure resources to complete this quickstart. You may be billed for these resources, depending on your [account status](https://azure.microsoft.com/account/) and [service pricing](https://azure.microsoft.com/pricing/). Other quickstarts in this collection build upon this quickstart. If you plan to work with subsequent quickstarts, tutorials, or with any of the services you have created in this quickstart, don't clean up the resources.
138
+
You created Azure resources to complete this quickstart. You may be billed for these resources, depending on your [account status](https://azure.microsoft.com/account/) and [service pricing](https://azure.microsoft.com/pricing/). Other quickstarts in this collection build upon this quickstart. If you plan to work with subsequent quickstarts, tutorials, or with any of the services you've created in this quickstart, don't clean up the resources.
@@ -153,7 +153,7 @@ Advance to the next article to learn how to add an Azure Storage queue binding t
153
153
154
154
# [Isolated process](#tab/isolated-process)
155
155
156
-
To learn more about working with C# functions that run in an isolated worker process, see the [Guide for running C# Azure Functions in an isolated worker process](dotnet-isolated-process-guide.md). Check out [.NET supported versions](functions-dotnet-class-library.md#supported-versions) to see other versions of supported .NET versions in an isolated worker process.
156
+
To learn more about working with C# functions that run in an isolated worker process, see the [Guide for running C# Azure Functions in an isolated worker process](dotnet-isolated-process-guide.md). Check out [.NET supported versions](functions-dotnet-class-library.md#supported-versions) to see other versions of supported .NET versions in an isolated worker process.
157
157
158
158
Advance to the next article to learn how to add an Azure Storage queue binding to your function:
0 commit comments