Run asynchronous code on schedule with Azure WebJobs
This short post describes how you can have a scheduled Azure WebJob that runs an asynchrouns method. The problem with this scenario is that the WebJob, which is just a regular console application, cannot have an asynchronous Main method. So you need a way around that. Next to that you…