Skip to content

Latest commit

 

History

History
24 lines (23 loc) · 925 Bytes

functions-extension-bundles-info.md

File metadata and controls

24 lines (23 loc) · 925 Bytes
author ms.service ms.topic ms.date ms.author
ggailey777
azure-functions
include
02/09/2020
glenga

::: zone pivot="programming-language-python,programming-language-javascript,programming-language-powershell,programming-language-typescript"

Tip

During startup, the host downloads and installs the Storage binding extension and other Microsoft binding extensions. This installation happens because binding extensions are enabled by default in the host.json file with the following properties:

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

If you encounter any errors related to binding extensions, check that the above properties are present in host.json. ::: zone-end