basic structure

This commit is contained in:
Rusty Striker 2024-12-01 17:09:56 +02:00
parent ebb657f372
commit 5623e962cf
Signed by: RustyStriker
GPG key ID: 87E4D691632DFF15
8 changed files with 69 additions and 0 deletions

2
client/Program.cs Normal file
View file

@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");

14
client/client.csproj Normal file
View file

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\lib\lib.csproj" />
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>