Skip to content

Commit 28b82f4

Browse files
committed
1 parent e8f4f08 commit 28b82f4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

articles/azure-functions/migrate-dotnet-to-isolated-model.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.custom:
66
- devx-track-dotnet
77
- ignite-2023
88
ms.topic: how-to
9-
ms.date: 08/2/2023
9+
ms.date: 01/17/2024
1010
---
1111

1212
# Migrate .NET apps from the in-process model to the isolated worker model
@@ -122,7 +122,7 @@ Use one of the following procedures to update this XML file to run in the isolat
122122

123123
When migrating to run in an isolated worker process, you must add a `Program.cs` file to your project with the following contents:
124124

125-
# [.NET 8 with ASP.NET Core Integration](#tab/net8)
125+
# [.NET 8](#tab/net8)
126126

127127
```csharp
128128
using Microsoft.Azure.Functions.Worker;
@@ -140,6 +140,8 @@ var host = new HostBuilder()
140140
host.Run();
141141
```
142142

143+
This examples supports [ASP.NET Core integration] to use normal .NET 8 types. To use the built-in Functions HTTP types instead, replace the call to `ConfigureFunctionsWebApplication` with a call to `ConfigureFunctionsWorkerDefaults`.
144+
143145
# [.NET Framework 4.8](#tab/netframework48)
144146

145147
```csharp

0 commit comments

Comments
 (0)