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
Copy file name to clipboardExpand all lines: articles/azure-functions/durable/durable-functions-isolated-create-first-csharp.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
62
62
| Select a version | Azure Functions v4 | You only see this option when the Core Tools aren't already installed. In this case, Core Tools are installed the first time you run the app. |
63
63
| Select a .NET runtime | .NET 8.0 isolated | Creates a function project that supports .NET 8 running in 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
64
| Select a template for your project's first function | Durable Functions Orchestration | Create a Durable Functions orchestration |
65
-
|Chooose a durable storage type | Azure Storage | The default storage provider for Durable Functions. See [Durable Functions storage providers](./durable-functions-storage-providers.md) for more details. |
65
+
|Choose a durable storage type | Azure Storage | The default storage provider for Durable Functions. See [Durable Functions storage providers](./durable-functions-storage-providers.md) for more details. |
66
66
| Provide a function name | HelloOrchestration | Name of the orchestration function |
67
67
| Provide a namespace | Company.Function | Namespace for the generated class |
68
68
| Select how you would like to open your project | Open in current window | Reopens Visual Studio Code in the folder you selected. |
@@ -103,11 +103,11 @@ Azure Functions Core Tools lets you run an Azure Functions project locally. You'
103
103
104
104
1. To test your function, set a breakpoint in the `SayHello` activity function code and press <kbd>F5</kbd> to start the function app project. Output from Core Tools is displayed in the **Terminal** panel.
105
105
106
-
> [!NOTE]
107
-
> For more information on debugging, see [Durable Functions Diagnostics](durable-functions-diagnostics.md#debugging).
106
+
> [!NOTE]
107
+
> For more information on debugging, see [Durable Functions Diagnostics](durable-functions-diagnostics.md#debugging).
108
108
109
-
> [!NOTE]
110
-
> If you encounter a "No job functions found" error, please [update your Azure Functions Core Tools installation to the latest version](./../functions-core-tools-reference.md). Older versions of core tools do not support .NET isolated.
109
+
> [!NOTE]
110
+
> If you encounter a "No job functions found" error, please [update your Azure Functions Core Tools installation to the latest version](./../functions-core-tools-reference.md). Older versions of core tools do not support .NET isolated.
111
111
112
112
1. In the **Terminal** panel, copy the URL endpoint of your HTTP-triggered function.
113
113
@@ -136,8 +136,8 @@ Azure Functions Core Tools lets you run an Azure Functions project locally. You'
136
136
}
137
137
```
138
138
139
-
> [!NOTE]
140
-
> You can observe the [replay behavior](./durable-functions-orchestrations.md#reliability) of Durable Functions through breakpoints. Because this is an important concept to understand, it's highly recommended that you read the linked article.
139
+
> [!NOTE]
140
+
> You can observe the [replay behavior](./durable-functions-orchestrations.md#reliability) of Durable Functions through breakpoints. Because this is an important concept to understand, it's highly recommended that you read the linked article.
141
141
142
142
1. To stop debugging, press <kbd>Shift + F5</kbd> in Visual Studio Code.
143
143
@@ -209,7 +209,7 @@ The Azure Functions template creates a project that can be published to a functi
209
209
> [!NOTE]
210
210
> There are other storage options you can use for your Durable Functions app. See [Durable Functions storage providers](durable-functions-storage-providers.md) to learn more about different storage options and what benefits they provide.
211
211
212
-
In your function app, you'll see a file called *Function1.cs* containing three functions, wihch are the basic building blocks of a Durable Functions:
212
+
In your function app, you'll see a file called *Function1.cs* containing three functions, which are the basic building blocks of a Durable Functions:
0 commit comments