Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 769 Bytes

functions-register-storage-binding-extension-csharp.md

File metadata and controls

23 lines (21 loc) · 769 Bytes
author ms.service ms.topic ms.date ms.author ms.custom
ggailey777
azure-functions
include
06/10/2022
glenga
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