From dba3ac62316b0d201a8fed4ff9b80975184c65a4 Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Wed, 15 May 2024 16:50:02 +0200 Subject: [PATCH] =?UTF-8?q?Projektdateien=20hinzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OwnChar.Server.sln | 25 +++++++++++++++++++++++++ OwnChar.Server/OwnChar.Server.csproj | 15 +++++++++++++++ OwnChar.Server/Program.cs | 10 ++++++++++ 3 files changed, 50 insertions(+) create mode 100644 OwnChar.Server.sln create mode 100644 OwnChar.Server/OwnChar.Server.csproj create mode 100644 OwnChar.Server/Program.cs diff --git a/OwnChar.Server.sln b/OwnChar.Server.sln new file mode 100644 index 0000000..39ce61d --- /dev/null +++ b/OwnChar.Server.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34714.143 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OwnChar.Server", "OwnChar.Server\OwnChar.Server.csproj", "{9EEFF2B5-270E-4DB4-8ED8-DEDDCDF0035C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9EEFF2B5-270E-4DB4-8ED8-DEDDCDF0035C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9EEFF2B5-270E-4DB4-8ED8-DEDDCDF0035C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9EEFF2B5-270E-4DB4-8ED8-DEDDCDF0035C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9EEFF2B5-270E-4DB4-8ED8-DEDDCDF0035C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {D0794B9A-6A8C-469B-AADA-B8932F72E62C} + EndGlobalSection +EndGlobal diff --git a/OwnChar.Server/OwnChar.Server.csproj b/OwnChar.Server/OwnChar.Server.csproj new file mode 100644 index 0000000..2b56a5b --- /dev/null +++ b/OwnChar.Server/OwnChar.Server.csproj @@ -0,0 +1,15 @@ + + + + Exe + net8.0 + enable + enable + + + + + + + + diff --git a/OwnChar.Server/Program.cs b/OwnChar.Server/Program.cs new file mode 100644 index 0000000..6447507 --- /dev/null +++ b/OwnChar.Server/Program.cs @@ -0,0 +1,10 @@ +namespace OwnChar.Server +{ + internal class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello, World!"); + } + } +}