feat: setup for day 4

This commit is contained in:
Stevan Freeborn
2024-12-04 21:53:01 -06:00
parent d658c31ffe
commit 4f723c8eb4
4 changed files with 57 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="..\CeresSearch\CeresSearch.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="TUnit" Version="0.4.74" />
</ItemGroup>
</Project>