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