From f9a93315847ebfafef198eb9fb3640c4fec3e5b2 Mon Sep 17 00:00:00 2001 From: max Date: Fri, 5 Jul 2024 12:21:17 +0200 Subject: [PATCH] Created solution --- Nerfed.Runtime/Nerfed.Runtime.csproj | 12 ++++++++++++ Nerfed.Runtime/Program.cs | 10 ++++++++++ Nerfed.sln | 25 +++++++++++++++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 Nerfed.Runtime/Nerfed.Runtime.csproj create mode 100644 Nerfed.Runtime/Program.cs create mode 100644 Nerfed.sln diff --git a/Nerfed.Runtime/Nerfed.Runtime.csproj b/Nerfed.Runtime/Nerfed.Runtime.csproj new file mode 100644 index 0000000..fbb4a9b --- /dev/null +++ b/Nerfed.Runtime/Nerfed.Runtime.csproj @@ -0,0 +1,12 @@ + + + + Exe + net8.0 + enable + enable + true + true + + + diff --git a/Nerfed.Runtime/Program.cs b/Nerfed.Runtime/Program.cs new file mode 100644 index 0000000..5f5da5b --- /dev/null +++ b/Nerfed.Runtime/Program.cs @@ -0,0 +1,10 @@ +namespace Nerfed.Runtime +{ + internal class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello, World!"); + } + } +} diff --git a/Nerfed.sln b/Nerfed.sln new file mode 100644 index 0000000..b328e45 --- /dev/null +++ b/Nerfed.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.35013.160 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nerfed.Runtime", "Nerfed.Runtime\Nerfed.Runtime.csproj", "{98E09BAF-587F-4238-89BD-7693C036C233}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {98E09BAF-587F-4238-89BD-7693C036C233}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {98E09BAF-587F-4238-89BD-7693C036C233}.Debug|Any CPU.Build.0 = Debug|Any CPU + {98E09BAF-587F-4238-89BD-7693C036C233}.Release|Any CPU.ActiveCfg = Release|Any CPU + {98E09BAF-587F-4238-89BD-7693C036C233}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DD7E15AC-D721-46C1-85B9-598EABCD8C59} + EndGlobalSection +EndGlobal