Skip to content

Commit

Permalink
Fix IdentityModel.Tokens dependencies (#2221)
Browse files Browse the repository at this point in the history
IdentityModel.Tokens is still depending on System.Text.* packages in net6.0, but these are unnecessary.

The reason is a type-o in the .csproj - we need a `.`.
  • Loading branch information
eerhardt authored and Brent Schmaltz committed Sep 6, 2023
1 parent b79f2cd commit 99f2915
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<PackageReference Include="System.Memory" Version="$(SystemMemoryVersion)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFrameworkIdentifier)' != 'NETCoreApp'">
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'">
<PackageReference Include="System.Text.Encodings.Web" Version="$(SystemTextEncodingsWeb)" />
<PackageReference Include="System.Text.Json" Version="$(SystemTextJson)" />
</ItemGroup>
Expand Down

0 comments on commit 99f2915

Please sign in to comment.