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}");
|
2017-07-07 16:00:38 +00:00
|
|
|
|
Console.WriteLine($"TEST_ENV={Environment.GetEnvironmentVariable("TEST_ENV")}");
|
2017-07-06 09:03:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|