initial commit

This commit is contained in:
2025-07-30 14:15:10 +02:00
commit 52ee191972
6 changed files with 57 additions and 0 deletions

9
src/Edith.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace Edith;
public class Program
{
public static void Main(string[] args) {
}
}

10
src/edith.csproj Normal file
View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>