프로젝트 추가

This commit is contained in:
2025-12-29 00:53:13 +09:00
parent 2d770d6def
commit ee76db0fd6
4 changed files with 45 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
/bin
/obj
.vs

10
MoneyMaker.csproj Normal file
View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

24
MoneyMaker.sln Normal file
View File

@@ -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

8
Program.cs Normal file
View File

@@ -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!");
}
}