Continuous Integration with Azure Webjobs

The idea is quite simple, to attach the webjobs along with website/mobile solution, so that the related webjobs will be deployed automatically along with website. You have to build the webjob executable, zip the file, and put it inside the folder App_Data. You have to follow this folder convention App_Data – jobs – [type of jobs] – [your zip folder]. The [type of jobs] can be either triggered or continuous, depending upon your application.

Build the solution and right click publish to Azure. Checkout the Azure portal webjobs section. You can see your uploaded webjobs. So you got the method, its a way of mirroring the folder, so it becomes the part of the project manifest. Quite simple ! Try it. Happy Coding. Enjoy…..