From 290ccd7813e4480ab18875c81174b35069849e73 Mon Sep 17 00:00:00 2001 From: pp Date: Fri, 18 Mar 2022 11:55:28 +0100 Subject: [PATCH] Add project files. --- Kutyák.sln | 25 +++++++++++++++++++++++++ Kutyák/Kutyák.csproj | 8 ++++++++ Kutyák/Program.cs | 12 ++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 Kutyák.sln create mode 100644 Kutyák/Kutyák.csproj create mode 100644 Kutyák/Program.cs diff --git a/Kutyák.sln b/Kutyák.sln new file mode 100644 index 0000000..0e215d5 --- /dev/null +++ b/Kutyák.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31624.102 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Kutyák", "Kutyák\Kutyák.csproj", "{3B617AEF-F020-4C0C-B111-1AF32070BA53}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3B617AEF-F020-4C0C-B111-1AF32070BA53}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3B617AEF-F020-4C0C-B111-1AF32070BA53}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3B617AEF-F020-4C0C-B111-1AF32070BA53}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3B617AEF-F020-4C0C-B111-1AF32070BA53}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {6B434173-0EDF-411C-9A68-BA64E3719344} + EndGlobalSection +EndGlobal diff --git a/Kutyák/Kutyák.csproj b/Kutyák/Kutyák.csproj new file mode 100644 index 0000000..c73e0d1 --- /dev/null +++ b/Kutyák/Kutyák.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp3.1 + + + diff --git a/Kutyák/Program.cs b/Kutyák/Program.cs new file mode 100644 index 0000000..fd27256 --- /dev/null +++ b/Kutyák/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace Kutyák +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +}