From 269a8c0305372be56280db07eb973a42407a9d42 Mon Sep 17 00:00:00 2001 From: "Collin M. 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