dotnetcron/Program.cs
2017-07-06 10:03:51 +01:00

12 lines
230 B
C#

using System;
namespace test_dotnet
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine($"This program should be running on a schedule: {DateTime.Now}");
}
}
}