feat: implement initial working version with core application structure and basic functionality

This commit is contained in:
2025-09-10 09:49:38 +00:00
parent 94b467a30b
commit 8a8b28860c
3 changed files with 42 additions and 9 deletions
+14
View File
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.9" />
</ItemGroup>
</Project>