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
## <aname="create-an-azure-functions-project"></a>Create an Azure Functions project
46
+
## Create an Azure Functions project
47
47
48
48
In Visual Studio Code, create a local Azure Functions project.
49
49
@@ -61,7 +61,7 @@ In Visual Studio Code, create a local Azure Functions project.
61
61
| ------ | ----- | ----------- |
62
62
|**Select a language for your function app project**| Select **C#**. | Creates a local C# Functions project. |
63
63
|**Select a version**| Select **Azure Functions v4**. | You see this option only when Core Tools isn't already installed. Core Tools is installed the first time you run the app. |
64
-
|**Select a .NET runtime**| Select **.NET 8.0 isolated**. | Creates a Functions project that supports .NET 8 running in an isolated worker process and the Azure Functions Runtime 4.0. For more information, see [How to target Azure Functions runtime version](../functions-versions.md). |
64
+
|**Select a .NET runtime**| Select **.NET 8.0 isolated**. | Creates a Functions project that supports .NET 8 running in an isolated worker process and the Azure Functions Runtime 4.0. For more information, see [How to target Azure Functions runtime version](../functions-versions.md). |
65
65
|**Select a template for your project's first function**| Select **Durable Functions Orchestration**. | Creates a Durable Functions orchestration. |
66
66
|**Choose a durable storage type**| Select **Azure Storage**. | The default storage provider for Durable Functions. For more information, see [Durable Functions storage providers](./durable-functions-storage-providers.md). |
67
67
|**Provide a function name**| Enter **HelloOrchestration**. | A name for the orchestration function. |
@@ -73,7 +73,7 @@ Visual Studio Code installs Azure Functions Core Tools if it's required to creat
73
73
Another file, *HelloOrchestration.cs*, contains the basic building blocks of a Durable Functions app:
74
74
75
75
| Method | Description |
76
-
| ----- | ----------- |
76
+
| ----- | ----------- |
77
77
|`HelloOrchestration`| Defines the Durable Functions app orchestration. In this case, the orchestration starts, creates a list, and then adds the result of three functions calls to the list. When the three function calls finish, it returns the list. |
78
78
|`SayHello`| A simple function app that returns *hello*. This function contains the business logic that is orchestrated. |
79
79
|`HelloOrchestration_HttpStart`| An [HTTP-triggered function](../functions-bindings-http-webhook.md) that starts an instance of the orchestration and returns a *check status* response. |
@@ -201,9 +201,9 @@ The Azure Functions template creates a project that you can publish to a functio
201
201
202
202
:::image type="content" source="./media/durable-functions-create-first-csharp/functions-isolated-vs-new-function.png" alt-text="Screenshot of the Create a new Azure Functions Application dialog in Visual Studio.":::
| **Functions worker** | Select **.NET 8 Isolated (Long Term Support)**. | Creates an Azure Functions project that supports .NET 8 running in an isolated worker process and the Azure Functions Runtime 4.0. For more information, see [How to target the Azure Functions runtime version](../functions-versions.md). |
| **Functions worker** | Select **.NET 8 Isolated (Long Term Support)**. | Creates an Azure Functions project that supports .NET 8 running in an isolated worker process and the Azure Functions Runtime 4.0. For more information, see [How to target the Azure Functions runtime version](../functions-versions.md). |
207
207
| **Function** | Enter **Durable Functions Orchestration**. | Creates a Durable Functions orchestration. |
208
208
209
209
> [!NOTE]
@@ -217,7 +217,7 @@ The Azure Functions template creates a project that you can publish to a functio
217
217
In your app folder, a file named *Function1.cs* contains three functions. The three functions are the basic building blocks of a Durable Functions app:
218
218
219
219
| Method | Description |
220
-
| ----- | ----------- |
220
+
| ----- | ----------- |
221
221
| `RunOrchestrator` | Defines the Durable Functions app orchestration. In this case, the orchestration starts, creates a list, and then adds the result of three functions calls to the list. When the three function calls finish, it returns the list. |
222
222
| `SayHello` | A simple function app that returns *hello*. This function contains the business logic that is orchestrated. |
223
223
| `HttpStart` | An [HTTP-triggered function](../functions-bindings-http-webhook.md) that starts an instance of the orchestration and returns a *check status* response. |
Copy file name to clipboardExpand all lines: includes/functions-create-azure-resources-vs-code.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
@@ -17,7 +17,7 @@ In this section, you create a function app in the Flex Consumption plan along wi
17
17
|--|--|
18
18
|**Select subscription**| Select the Azure subscription to use. The prompt doesn't appear when you have only one subscription visible under **Resources**. |
19
19
|**Enter a new function app name**| Enter a globally unique name that's valid in a URL path. The name you enter is validated to make sure that it's unique in Azure Functions. |
20
-
|**Select a location for new resources**| Select an Azure region. For better performance, select a [region](https://azure.microsoft.com/regions/) near you. Only regions supported by Flex Consumption plans are displayed. |
20
+
|**Select a location for new resources**| Select an Azure region. For better performance, select a [region](https://azure.microsoft.com/explore/global-infrastructure/geographies/) near you. Only regions supported by Flex Consumption plans are displayed. |
21
21
|**Select a runtime stack**| Select the language version you currently run locally. |
22
22
|**Select resource authentication type**| Select **Managed identity**, which is the most secure option for connecting to the [default host storage account](../articles/azure-functions/storage-considerations.md#storage-account-guidance). |
0 commit comments