diff --git a/TestApp/Program.cs b/TestApp/Program.cs index 869f9c5..ed86d74 100644 --- a/TestApp/Program.cs +++ b/TestApp/Program.cs @@ -1,5 +1,8 @@ // See https://aka.ms/new-console-template for more information using System; +using System.Threading.Tasks; -Console.WriteLine("Application works as expected!"); \ No newline at end of file +Console.WriteLine("All is OK!"); + +await Task.Delay(3000); \ No newline at end of file