chore: setup for day 18

This commit is contained in:
Stevan Freeborn
2024-12-17 23:48:25 -06:00
parent 3d29524ad4
commit 24c7bbaaa0
5 changed files with 107 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NoWarn>CA1822</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\RamRun\RamRun.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="TUnit" Version="0.5.6" />
</ItemGroup>
</Project>