From f22a5964470d27989bdc65371194f1dbc05bfecf Mon Sep 17 00:00:00 2001 From: kerteszkatalin Date: Thu, 24 Mar 2022 17:28:12 +0100 Subject: [PATCH] Add project files. --- Szotar feladatok.sln | 25 +++++++++++++++++++++++++ Szotar/Program.cs | 14 ++++++++++++++ Szotar/Szotar.csproj | 8 ++++++++ 3 files changed, 47 insertions(+) create mode 100644 Szotar feladatok.sln create mode 100644 Szotar/Program.cs create mode 100644 Szotar/Szotar.csproj diff --git a/Szotar feladatok.sln b/Szotar feladatok.sln new file mode 100644 index 0000000..2953959 --- /dev/null +++ b/Szotar feladatok.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}") = "Szotar", "Szotar\Szotar.csproj", "{7D77785D-DD81-4ED7-92CB-7479557BE9A1}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7D77785D-DD81-4ED7-92CB-7479557BE9A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7D77785D-DD81-4ED7-92CB-7479557BE9A1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7D77785D-DD81-4ED7-92CB-7479557BE9A1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7D77785D-DD81-4ED7-92CB-7479557BE9A1}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {08ED57BB-2461-49C0-BDA6-EEBBAA140F58} + EndGlobalSection +EndGlobal diff --git a/Szotar/Program.cs b/Szotar/Program.cs new file mode 100644 index 0000000..452e5dc --- /dev/null +++ b/Szotar/Program.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; + + +namespace Szotar +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/Szotar/Szotar.csproj b/Szotar/Szotar.csproj new file mode 100644 index 0000000..c73e0d1 --- /dev/null +++ b/Szotar/Szotar.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp3.1 + + +