Skip to content

Commit 986c676

Browse files
Merge pull request #311631 from ggailey777/patch-10
[Functions] Update warmup trigger documentation for C# isolated
2 parents b12423f + 581d3d4 commit 986c676

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

articles/azure-functions/functions-bindings-warmup.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ description: Understand how to use the warmup trigger in Azure Functions.
44
keywords: azure functions, functions, event processing, warmup, cold start, premium, dynamic compute, serverless architecture
55
ms.service: azure-functions
66
ms.topic: reference
7-
ms.devlang: csharp
87
# ms.devlang: csharp, java, javascript, python
98
ms.custom: devx-track-csharp, devx-track-extended-java, devx-track-js, devx-track-python, devx-track-ts
10-
ms.date: 09/04/2023
9+
ms.date: 02/10/2026
1110
zone_pivot_groups: programming-languages-set-functions
1211
---
1312

@@ -26,6 +25,14 @@ The following considerations apply when using a warmup trigger:
2625
* Dependencies created by warmup trigger should be shared with other functions in your app. To learn more, see [Static clients](manage-connections.md#static-clients).
2726
* If the [built-in authentication](../app-service/overview-authentication-authorization.md) (also known as Easy Auth) is used, [HTTPS Only](../app-service/configure-ssl-bindings.md#enforce-https) should be enabled for the warmup trigger to get invoked.
2827

28+
::: zone pivot="programming-language-csharp"
29+
## Install extension
30+
31+
You must install this [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.Warmup) when your C# class library function app runs in the [isolated worker process](dotnet-isolated-process-guide.md). When your C# app [runs in-process with the host](functions-dotnet-class-library.md), you don't need to install an extra package.
32+
33+
[!INCLUDE [functions-in-process-model-retirement-note](../../includes/functions-in-process-model-retirement-note.md)]
34+
::: zone-end
35+
2936
## Example
3037

3138
::: zone pivot="programming-language-csharp"

0 commit comments

Comments
 (0)