Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 769 Bytes

File metadata and controls

23 lines (21 loc) · 769 Bytes
author ggailey777
ms.service azure-functions
ms.topic include
ms.date 06/10/2022
ms.author glenga
ms.custom devdivchpfy22

::: zone pivot="programming-language-csharp"

Except for HTTP and timer triggers, bindings are implemented as extension packages. Run the following dotnet add package command in the Terminal window to add the Storage extension package to your project.

dotnet add package Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues --prerelease
dotnet add package Microsoft.Azure.WebJobs.Extensions.Storage 

Now, you can add the storage output binding to your project.
::: zone-end