From 47f2e401e0f2e8e0e47ae9c664ebe86cf6a95ef7 Mon Sep 17 00:00:00 2001 From: Collin Barrett Date: Thu, 8 Feb 2018 16:58:50 -0600 Subject: [PATCH] Agent Hello World --- src/FilterLists.Agent/Program.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/FilterLists.Agent/Program.cs b/src/FilterLists.Agent/Program.cs index b789fdce4..6bb9de8e8 100644 --- a/src/FilterLists.Agent/Program.cs +++ b/src/FilterLists.Agent/Program.cs @@ -2,11 +2,13 @@ namespace FilterLists.Agent { - class Program + public class Program { - static void Main(string[] args) + public static void Main(string[] args) { Console.WriteLine("Hello World!"); + Console.Write("\nPress any key to exit..."); + Console.ReadKey(true); } } } \ No newline at end of file