From 57f3e6491eaf79d16ec5f153691228327851264c Mon Sep 17 00:00:00 2001 From: Eugene Aleykin Date: Wed, 14 Aug 2024 13:29:10 +0200 Subject: [PATCH] test --- TestApp/Program.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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