GildedRose-Refactoring-Kata/csharpcore/csharpcore.csproj
Will Verland c87a4acc2d Update csharpcore Nuget dependencies
I updated the dependencies one at a time. I ran the program and the
tests after each package was upgraded to ensure that no compiler
warnings or changes in behaviour were introduced.
2021-07-21 16:52:44 +12:00

16 lines
531 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<StartupObject>csharpcore.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ApprovalTests" Version="5.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
</ItemGroup>
</Project>