From 50d459632a93b9330878c6e24a198bab13c08db1 Mon Sep 17 00:00:00 2001 From: Baba Kamyljanov Date: Fri, 6 Sep 2024 16:01:14 +0800 Subject: [PATCH] added extension bundle to host.json --- SSW.Rules.AzFuncs/host.json | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/SSW.Rules.AzFuncs/host.json b/SSW.Rules.AzFuncs/host.json index ee5cf5f..6943712 100644 --- a/SSW.Rules.AzFuncs/host.json +++ b/SSW.Rules.AzFuncs/host.json @@ -1,12 +1,16 @@ { - "version": "2.0", - "logging": { - "applicationInsights": { - "samplingSettings": { - "isEnabled": true, - "excludedTypes": "Request" - }, - "enableLiveMetricsFilters": true - } + "version": "2.0", + "logging": { + "applicationInsights": { + "samplingSettings": { + "isEnabled": true, + "excludedTypes": "Request" + }, + "enableLiveMetricsFilters": true } + }, + "extensionBundle": { + "id": "Microsoft.Azure.Functions.ExtensionBundle", + "version": "[4.0.0, 5.0.0)" + } } \ No newline at end of file