mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
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.
16 lines
531 B
XML
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>
|