Azure / azure-functions-extension-bundles

Azure Functions Extension Bundles
MIT License
70 stars 52 forks source link

Extension Bundle Version 5.0.0 #391

Open yomikoye opened 7 months ago

yomikoye commented 7 months ago

Hi, I am using the function extension bundle in my Azure Function with a queue. The documentation requires an extension bundle > 5.0.0 (see image below)

image

However, when i set the version above 5.0.0, I get an error

Microsoft.Azure.WebJobs.Script: Error building configuration in an external startup class. System.Private.CoreLib: Value cannot be null. (Parameter 'input').

and the functionapp cannot be initiated. It works when i revert the version to "version": "[4.0.0, 5.0.0)"

{
    "version": "2.0",
    "extensionBundle": {
        "id": "Microsoft.Azure.Functions.ExtensionBundle",
        "version": "[5.0.0,)"
    }
}

I would like to clarify if versions 5.00 and above exist or there is a problem with the documentation. thank you!