Creating Azure Functions with C# Script (.csx)
And deploying it from Azure DevOps to an Azure Function
6 min readAug 8, 2022
--
Azure Functions is a serverless technology that allows you to process events. It allows you to act on a blob being added, for example, or a message being published on a queue or an HTTP request. You can write an Azure function in Python, PowerShell, C#, Node, or Java.
When building a project in C#, you need to create a .csproj. To create an Azure Function, you’ll need to introduce a class, add bindings, and so forth. Then you need to…