Add AoC 2025 project structure and first solutions

This commit is contained in:
Sebastian Lindemeier
2025-12-04 21:40:42 +01:00
parent c83642d286
commit 1e98d90c33
15 changed files with 754 additions and 0 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>
<ProjectReference Include="..\AoC_2025\AoC_2025.csproj" />
</ItemGroup>
</Project>