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