I have Http Trigger function in .Net 5.0.
I added output binding to the function to a Queue by following this article:
It may be a small fix but haven't been able to figure it out. There are code snippets over the Web but no working example where I can see which nugget package I am missing. Any help will be appreciated.
CodePudding user response:
The "out-of-process" or "isolated" model requires that you install the following nuget package:
Microsoft.Azure.Functions.Worker.Extensions.Storage
Then, you'll be able to use the QueueOutput Attribute