From ee76db0fd6a4b61f3545c59818d7a395090fb96f Mon Sep 17 00:00:00 2001 From: tymmkang Date: Mon, 29 Dec 2025 00:53:13 +0900 Subject: [PATCH] =?UTF-8?q?=ED=94=84=EB=A1=9C=EC=A0=9D=ED=8A=B8=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 +++ MoneyMaker.csproj | 10 ++++++++++ MoneyMaker.sln | 24 ++++++++++++++++++++++++ Program.cs | 8 ++++++++ 4 files changed, 45 insertions(+) create mode 100644 .gitignore create mode 100644 MoneyMaker.csproj create mode 100644 MoneyMaker.sln create mode 100644 Program.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f6bae3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/bin +/obj +.vs diff --git a/MoneyMaker.csproj b/MoneyMaker.csproj new file mode 100644 index 0000000..e8e1b5a --- /dev/null +++ b/MoneyMaker.csproj @@ -0,0 +1,10 @@ + + + + Exe + net9.0 + enable + enable + + + diff --git a/MoneyMaker.sln b/MoneyMaker.sln new file mode 100644 index 0000000..53731b8 --- /dev/null +++ b/MoneyMaker.sln @@ -0,0 +1,24 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.2.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MoneyMaker", "MoneyMaker.csproj", "{2E710CE2-B409-66DE-DEB1-3CE2DF3F4EDC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2E710CE2-B409-66DE-DEB1-3CE2DF3F4EDC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2E710CE2-B409-66DE-DEB1-3CE2DF3F4EDC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2E710CE2-B409-66DE-DEB1-3CE2DF3F4EDC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2E710CE2-B409-66DE-DEB1-3CE2DF3F4EDC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {1CB137DC-2920-4A68-8379-E011C1DB2A57} + EndGlobalSection +EndGlobal diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..ff5d677 --- /dev/null +++ b/Program.cs @@ -0,0 +1,8 @@ +internal class Program +{ + private static void Main(string[] args) + { + // See https://aka.ms/new-console-template for more information + Console.WriteLine("Hello, World!"); + } +} \ No newline at end of file