dotnetcron/Program.cs

13 lines
230 B
C#
Raw Normal View History

2017-07-06 09:03:51 +00:00
using System;
namespace test_dotnet
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine($"This program should be running on a schedule: {DateTime.Now}");
}
}
}