From 3a51e87473f03cba04a0ebd423365c029b6d15e6 Mon Sep 17 00:00:00 2001 From: "Babanazar Kamyljanov [SSW]" <138548013+babakamyljanovssw@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:56:01 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20Added=20extension=20bundle=20(#6?= =?UTF-8?q?0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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