Skip to content

Commit

Permalink
Dropped dependency on System.Memory for .NET Standard 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkCiliaVincenti committed Dec 7, 2023
1 parent 2eebb06 commit a35b743
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ListShuffle/ListShuffle.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@

<ItemGroup>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="ThreadSafeRandomizer" Version="1.1.4" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Memory" Version="4.5.5" />
</ItemGroup>
</Project>

0 comments on commit a35b743

Please sign in to comment.