Skip to content

Commit 8954a37

Browse files
committed
Edits2
1 parent fef1b6d commit 8954a37

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

articles/azure-functions/durable/durable-functions-isolated-create-first-csharp.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Quickstart: Create a C# Durable Functions app"
33
description: Create and publish a C# Durable Functions app in Azure Functions by using Visual Studio or Visual Studio Code.
44
author: lilyjma
55
ms.topic: quickstart
6-
ms.date: 07/24/2024
6+
ms.date: 02/24/2026
77
ms.author: azfuncdf
88
zone_pivot_groups: code-editors-set-one
99
ms.devlang: csharp
@@ -43,7 +43,7 @@ To complete this quickstart, you need:
4343

4444
[!INCLUDE [quickstarts-free-trial-note](~/reusable-content/ce-skilling/azure/includes/quickstarts-free-trial-note.md)]
4545

46-
## <a name="create-an-azure-functions-project"></a>Create an Azure Functions project
46+
## Create an Azure Functions project
4747

4848
In Visual Studio Code, create a local Azure Functions project.
4949

@@ -61,7 +61,7 @@ In Visual Studio Code, create a local Azure Functions project.
6161
| ------ | ----- | ----------- |
6262
| **Select a language for your function app project** | Select **C#**. | Creates a local C# Functions project. |
6363
| **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). |
6565
| **Select a template for your project's first function** | Select **Durable Functions Orchestration**. | Creates a Durable Functions orchestration. |
6666
| **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). |
6767
| **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
7373
Another file, *HelloOrchestration.cs*, contains the basic building blocks of a Durable Functions app:
7474

7575
| Method | Description |
76-
| ----- | ----------- |
76+
| ----- | ----------- |
7777
| `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. |
7878
| `SayHello` | A simple function app that returns *hello*. This function contains the business logic that is orchestrated. |
7979
| `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
201201

202202
:::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.":::
203203

204-
| Setting | Action | Description |
205-
| ------------ | ------- |----------------------------------------- |
206-
| **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). |
204+
| Setting | Action | Description |
205+
| ------------ | ------- | ----------------------------------------- |
206+
| **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). |
207207
| **Function** | Enter **Durable Functions Orchestration**. | Creates a Durable Functions orchestration. |
208208

209209
> [!NOTE]
@@ -217,7 +217,7 @@ The Azure Functions template creates a project that you can publish to a functio
217217
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:
218218

219219
| Method | Description |
220-
| ----- | ----------- |
220+
| ----- | ----------- |
221221
| `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. |
222222
| `SayHello` | A simple function app that returns *hello*. This function contains the business logic that is orchestrated. |
223223
| `HttpStart` | An [HTTP-triggered function](../functions-bindings-http-webhook.md) that starts an instance of the orchestration and returns a *check status* response. |

includes/functions-create-azure-resources-vs-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In this section, you create a function app in the Flex Consumption plan along wi
1717
|--|--|
1818
|**Select subscription**| Select the Azure subscription to use. The prompt doesn't appear when you have only one subscription visible under **Resources**. |
1919
|**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. |
2121
|**Select a runtime stack**| Select the language version you currently run locally. |
2222
| **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). |
2323

0 commit comments

Comments
 (0)