Category: Functions

Azure Functions on 64 bit

Azure Functions Benjamin Perkins

Until this is updated in the portal to allow this, you can read how to enable that at the below links: Allow 64 bit to be enabled in the UI Set Azure Function App on Consumption Plan to 64 bit In summary: Access resource manager here Navogate to the Function App –> subscription/resourceGroups/resourceGroupName/providers/Microsoft.Web/sites/functionaAppName/config/web/use32BitWorkerProcess Set that […]

Read More →

Testing/Consuming an Azure Function

Azure Functions Benjamin Perkins

I created an Azure Function using these instructions and the Visual Studio Tools For Azure Functions which I discussed here and here. #Azure #AzureFunction #AzureAppService I also found some good instructions on how to test Azure Functions here. As shown in Figure 1, I created a C# Http Trigger Azure Function named ‘SayHello’ with an […]

Read More →

Visual Studio Tool for Azure Functions

Azure Functions Benjamin Perkins

I wrote a short post about the debugging Azure Functions in Visual Studio feature here. There was a new video posted about it below. #AzureFunctions Visual Studio Tools for Azure Functions Cool stuff. Here are some other interesting links: Visual Studio Tools for Azure Functions Visual Studio Tools for Azure Functions Video Azure Functions Challenge […]

Read More →

Azure Functions and Azure are blowing my mind

Azure Functions Benjamin Perkins

I am really starting to like these Azure Functions.  Just imagining that I don’t even need a server anymore…at all.  Only a few years ago the major blocker was getting a server online to manage requests from your customer, the cost, complexity and management was HUGE!  And now you don’t even need one at all.  […]

Read More →

Azure Functions updates

Azure Functions Benjamin Perkins

Azure Functions CLI has been renamed to azure-functions-core-tools, see here. Also, appsettings.json has been renamed to local.settings.json, the appsettings.json file will show as deprecated, but will still work. See other changes here.

Read More →