feat: initial project setup for day 3

This commit is contained in:
Stevan Freeborn
2024-12-03 22:25:18 -06:00
parent 597e08024f
commit 0a7b6b2291
5 changed files with 112 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>
<PackageReference Include="TUnit" Version="0.4.63" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MullItOver\MullItOver.csproj" />
</ItemGroup>
</Project>