Thanks for reaching out to Q&A forum.
This issue could occur if the Azure function extension bundle is not added to the host.json file. Please add the appropriate version of the extension bundle.
{
"version": "2.0",
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[3.3.0, 4.0.0)"
}
}
Reference : [https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-register#extension-bundles
Hope this helps! Feel free to reach out to me if you have any queries or concerns.