From 1041aa03918399647100b16c3dc89b0beda8d754 Mon Sep 17 00:00:00 2001 From: Sem van der Hoeven Date: Wed, 23 Sep 2020 10:43:03 +0200 Subject: [PATCH] added empty server and client projects --- Client/Client.csproj | 8 ++++++++ Client/Program.cs | 12 ++++++++++++ ProftaakRH/ProftaakRH.sln | 12 ++++++++++++ Server/Program.cs | 12 ++++++++++++ Server/Server.csproj | 8 ++++++++ 5 files changed, 52 insertions(+) create mode 100644 Client/Client.csproj create mode 100644 Client/Program.cs create mode 100644 Server/Program.cs create mode 100644 Server/Server.csproj diff --git a/Client/Client.csproj b/Client/Client.csproj new file mode 100644 index 0000000..c73e0d1 --- /dev/null +++ b/Client/Client.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp3.1 + + + diff --git a/Client/Program.cs b/Client/Program.cs new file mode 100644 index 0000000..920b199 --- /dev/null +++ b/Client/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace Client +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/ProftaakRH/ProftaakRH.sln b/ProftaakRH/ProftaakRH.sln index 79f23ee..4ea030c 100644 --- a/ProftaakRH/ProftaakRH.sln +++ b/ProftaakRH/ProftaakRH.sln @@ -7,6 +7,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProftaakRH", "ProftaakRH.cs EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RH-Engine", "..\RH-Engine\RH-Engine.csproj", "{984E295E-47A2-41E7-90E5-50FDB9E67694}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server", "..\Server\Server.csproj", "{B1AB6F51-A20D-4162-9A7F-B3350B7510FD}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "..\Client\Client.csproj", "{5759DD20-7A4F-4D8D-B986-A70A7818C112}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -21,6 +25,14 @@ Global {984E295E-47A2-41E7-90E5-50FDB9E67694}.Debug|Any CPU.Build.0 = Debug|Any CPU {984E295E-47A2-41E7-90E5-50FDB9E67694}.Release|Any CPU.ActiveCfg = Release|Any CPU {984E295E-47A2-41E7-90E5-50FDB9E67694}.Release|Any CPU.Build.0 = Release|Any CPU + {B1AB6F51-A20D-4162-9A7F-B3350B7510FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B1AB6F51-A20D-4162-9A7F-B3350B7510FD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B1AB6F51-A20D-4162-9A7F-B3350B7510FD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B1AB6F51-A20D-4162-9A7F-B3350B7510FD}.Release|Any CPU.Build.0 = Release|Any CPU + {5759DD20-7A4F-4D8D-B986-A70A7818C112}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5759DD20-7A4F-4D8D-B986-A70A7818C112}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5759DD20-7A4F-4D8D-B986-A70A7818C112}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5759DD20-7A4F-4D8D-B986-A70A7818C112}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Server/Program.cs b/Server/Program.cs new file mode 100644 index 0000000..72c96d1 --- /dev/null +++ b/Server/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace Server +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/Server/Server.csproj b/Server/Server.csproj new file mode 100644 index 0000000..c73e0d1 --- /dev/null +++ b/Server/Server.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp3.1 + + +