Azure WebJob in .NET Core

This is an extremely old question, but I just want to point out that WebJobs for .NET Core is now available. However it works slightly differently in that you need to use a console app with some specific build commands rather than have an actual WebJob template.

More info/tutorials here : https://dotnetcoretutorials.com/2018/10/09/azure-webjobs-in-net-core-part-1/


The VS 2017 tooling for .NET Core does not exist yet, although it is planned. It's still possible to write a Core based WebJob and deploy it manually to your Web App. But do note that the WebJob SDK (which is a whole other topic) does not yet support .NET Core (related issue here).