From f61350ce04f9c3837edda5f941f0f21459925e2f Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Wed, 2 Mar 2022 07:42:07 +1100 Subject: [PATCH] Remove sample program --- .../Games.Common.Sample/Games.Common.Sample.csproj | 13 ------------- 00_Common/dotnet/Games.Common.Sample/Program.cs | 7 ------- 2 files changed, 20 deletions(-) delete mode 100644 00_Common/dotnet/Games.Common.Sample/Games.Common.Sample.csproj delete mode 100644 00_Common/dotnet/Games.Common.Sample/Program.cs diff --git a/00_Common/dotnet/Games.Common.Sample/Games.Common.Sample.csproj b/00_Common/dotnet/Games.Common.Sample/Games.Common.Sample.csproj deleted file mode 100644 index a4eb9b00..00000000 --- a/00_Common/dotnet/Games.Common.Sample/Games.Common.Sample.csproj +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - Exe - net6.0 - enable - - - diff --git a/00_Common/dotnet/Games.Common.Sample/Program.cs b/00_Common/dotnet/Games.Common.Sample/Program.cs deleted file mode 100644 index 6bd2a8c4..00000000 --- a/00_Common/dotnet/Games.Common.Sample/Program.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Games.Common.IO; - -var io = new ConsoleIO(); - -var name = io.ReadString("What's your name"); - -io.WriteLine($"Hello, {name}");