Skip to content

Commit

Permalink
Add proper nugetpackages
Browse files Browse the repository at this point in the history
  • Loading branch information
Wsm2110 committed Nov 16, 2024
1 parent dbf2b26 commit c8f100c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/Faster.Map.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,19 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.IO.Hashing" Version="9.0.0-rc.2.24473.5" />
<PackageReference Include="System.IO.Hashing" Version="9.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="System.IO.Hashing" Version="7.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="System.IO.Hashing" Version="8.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="System.IO.Hashing" Version="9.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' != 'net7.0'">
Expand Down

0 comments on commit c8f100c

Please sign in to comment.