Major changes

Changed the whole project struture
justfile was adjusted to reflect the changes
Add Tests
Minor changes to .gitignore
This commit is contained in:
2023-06-03 22:53:27 +02:00
parent 10ba654b09
commit 9ad8012052
9 changed files with 91 additions and 11 deletions

View File

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
</Project>