Tags: Azure

Function ({name}) Error: The binding type(s) ‘{triggerType}’ are not registered.

Azure Functions Benjamin Perkins

I was working with an Azure Function V2 (beta) and got this exception, Figure 1, when I opened the Function in the portal. Error: Function (BlobTrigger-v2) Error: The binding type(s) ‘blobTrigger’ are not registered. Please ensure the type is correct and the binding extension is installed. Figure 1, Function Error: binding extension is installed The […]

Read More →

What is the current .NET version on an Azure App Service

Azure App Service Benjamin Perkins

I have an App Service here (currentdotnetversion) that shows the output of the current (when I wrote this article) .NET version using C# code.  Here is a partial code snippet: protected void Page_Load(object sender, EventArgs e) {    const string subkey = @”SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full\”;    using (RegistryKey ndpKey = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine,           RegistryView.Registry32).OpenSubKey(subkey))    { […]

Read More →

How to Backup/Restore an Azure App Service using Azure PowerShell

PowerShell Benjamin Perkins

Use these Azure PowerShell cmdlets: New-AzureRmWebAppBackup Restore-AzureRmWebAppBackup Get-AzureRmStorageAccountKey New-AzureStorageContainerSASToken Don’t forget that this is open source, so you can see what these cmdlets are doing on GitHub here. Note that creating and restoring backups are only available in STANDARD and PREMIUM mode. Check out how to do the same using BASH from the console here. […]

Read More →