scaffold 2024

This commit is contained in:
2025-11-14 07:54:02 -08:00
parent ef109439e6
commit 68d81019e8
59 changed files with 20459 additions and 33 deletions

18
2024/2024.csproj Normal file
View File

@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>_2024</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<!-- Copy input files/folders to the output directory so File.ReadAllText("input/..") works at runtime -->
<ItemGroup>
<None Update="input/**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>