We are releasing an update to Windows Azure WebJobs SDK introduced by Scott Hanselman here . Download this release You can download WebJobs SDK in a console application project from the NuGet gallery. You can install or update to these packages through NuGet gallery using the NuGet Package Manager Console, like this: Install-Package Microsoft.WindowsAzure.Jobs -Pre Install-Package Microsoft.WindowsAzure.Jobs.Host -Pre What is WebJobs SDK? The WebJobs feature of Windows Azure Web Sites provides an easy way for you to run programs such as services or background tasks in a Web Site. You can upload and run an executable file such as an .exe , .cmd , or .bat file to your web site. You can run these as triggered or continuous WebJobs. Without WebJobs...(read more)
Go to the complete details ...