added empty server and client projects

This commit is contained in:
Sem van der Hoeven
2020-09-23 10:43:03 +02:00
parent b391583107
commit 1041aa0391
5 changed files with 52 additions and 0 deletions

12
Server/Program.cs Normal file
View File

@@ -0,0 +1,12 @@
using System;
namespace Server
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}

8
Server/Server.csproj Normal file
View File

@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>