Skip to content

Commit

Permalink
Try and fix the package reference errors (someday I should read up on…
Browse files Browse the repository at this point in the history
… how this works)
  • Loading branch information
halgari committed Sep 21, 2024
1 parent e291b0c commit 443ff8f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
<PackageReference Include="xunit" Version="2.5.3"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3"/>
<PackageReference Include="coverlet.collector"/>
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
<PackageReference Include="xunit"/>
<PackageReference Include="xunit.runner.visualstudio"/>
</ItemGroup>

<ItemGroup>
Expand Down

1 comment on commit 443ff8f

@Sewer56
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Versions are set in Directory.Packages.props.
It's referred to as Central Package Management, was added somewhere around 2022 if I recall.

Please sign in to comment.