Azure/azure-functions-dotnet-extensions

Error "The binding type(s) 'blobTrigger' are not registered." after update of SDK.Functions to 3.0.4

mchudinov opened this issue · 2 comments

Getting en error "The binding type(s) 'blobTrigger' are not registered. Please ensure the type is correct and the binding extension is installed."
after update of SDK.Functions to 3.0.4.
Even a most simple setup like this fails:

        public static void Run([BlobTrigger("samples-workitems/{name}", Connection = "AzureWebJobsStorage")]Stream myBlob, string name, ILogger log)
        {
            log.LogInformation($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Length} Bytes");
        }

Downgrading SDK.Functions to 3.0.3 fixes this problem. Still wondering why a minor version upgrade results in this error.

A new version SDK.Functions 3.0.5 has just been shipped. It fixes this problem.