aoc2019/aoc2019.test/aoc2019.test.csproj
Ben Harris cb10768fa1
Some checks failed
continuous-integration/drone/push Build is failing
move project to subdirectory and add unit testing
day 13 is removed from the test so it doesn't take 4 years
2020-12-16 18:06:36 -05:00

21 lines
574 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="2.1.1" />
<PackageReference Include="coverlet.collector" Version="1.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\aoc2019\aoc2019.csproj" />
</ItemGroup>
</Project>