chore: setup for day 16

This commit is contained in:
Stevan Freeborn
2024-12-16 09:24:23 -06:00
parent 275c4d232b
commit 02ab20eeaa
4 changed files with 80 additions and 0 deletions
@@ -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="..\ReindeerMaze\ReindeerMaze.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="TUnit" Version="0.5.0" />
</ItemGroup>
</Project>