79832483

Date: 2025-11-28 11:02:31
Score: 1
Natty:
Report link

In my case the problem was the version of the extension bundles

Warning message coming from Azure

What I had to do is:

Locate the `host.json` of your function app

Update the

  "extensionBundle": {
      "id": "Microsoft.Azure.Functions.ExtensionBundle",
      "version": "[3.*, 4.0.0]"
    }
  }

To

  "extensionBundle": {
      "id": "Microsoft.Azure.Functions.ExtensionBundle",
      "version": "[4.*, 5.0.0)"
    }
  }
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Potis23