November 2018
Intermediate to advanced
606 pages
15h 7m
English
When you open Visual Studio, go to File | New Project. In the New Project window, select Windows Classic Desktop and then Console App (.NET Framework). Give your application a name and click on OK:

After a moment, you will see an empty project, which we can modify. We will try to trigger our job in intervals (let's say one minute), so we need to add code, which will finish within the given time.
For the very beginning, let's just display the current date. In the Main() method of your application, add the following code:
using System;namespace MyFirstWebJob{ class Program { static void Main() { Console.WriteLine($"Current ...Read now
Unlock full access