Tag: azure webjobs

  • Azure WebJobs

    What is an Azure WebJob?  With WebJobs, you can simply run a program or script just like a running a web app. Azure Functions is also a similar service. You can create a console app and run it continuously or triggered. Let’s try a simple one. Create the console app: dotnet new console Write your code.…