From 380e3460268e3920d21a6a39e4f491889759c731 Mon Sep 17 00:00:00 2001 From: murzsiczmartin Date: Thu, 24 Mar 2022 17:28:11 +0100 Subject: [PATCH] Add project files. --- 2022.03.24.sln | 25 +++++++++++++++++++++++++ 2022.03.24/2022.03.24.csproj | 9 +++++++++ 2022.03.24/Program.cs | 13 +++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 2022.03.24.sln create mode 100644 2022.03.24/2022.03.24.csproj create mode 100644 2022.03.24/Program.cs diff --git a/2022.03.24.sln b/2022.03.24.sln new file mode 100644 index 0000000..b30d27f --- /dev/null +++ b/2022.03.24.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.32106.194 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "2022.03.24", "2022.03.24\2022.03.24.csproj", "{3464E8FA-21C0-4AC0-A2A3-6BBA8CEE15E6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3464E8FA-21C0-4AC0-A2A3-6BBA8CEE15E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3464E8FA-21C0-4AC0-A2A3-6BBA8CEE15E6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3464E8FA-21C0-4AC0-A2A3-6BBA8CEE15E6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3464E8FA-21C0-4AC0-A2A3-6BBA8CEE15E6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F52A81D7-2E14-4D6F-8540-07032D62CFEF} + EndGlobalSection +EndGlobal diff --git a/2022.03.24/2022.03.24.csproj b/2022.03.24/2022.03.24.csproj new file mode 100644 index 0000000..1b76416 --- /dev/null +++ b/2022.03.24/2022.03.24.csproj @@ -0,0 +1,9 @@ + + + + Exe + netcoreapp3.1 + _2022._03._24 + + + diff --git a/2022.03.24/Program.cs b/2022.03.24/Program.cs new file mode 100644 index 0000000..59e6268 --- /dev/null +++ b/2022.03.24/Program.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; + +namespace _2022._03._24 +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +}