Skip to content

Commit ccfca23

Browse files
eerhardtbrentschmaltz
authored andcommitted
Fix IdentityModel.Tokens dependencies (#2221)
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 `.`.
1 parent b30a220 commit ccfca23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.IdentityModel.Tokens/Microsoft.IdentityModel.Tokens.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<PackageReference Include="System.Memory" Version="$(SystemMemoryVersion)" />
4646
</ItemGroup>
4747

48-
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' != 'NETCoreApp'">
48+
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'">
4949
<PackageReference Include="System.Text.Encodings.Web" Version="$(SystemTextEncodingsWeb)" />
5050
<PackageReference Include="System.Text.Json" Version="$(SystemTextJson)" />
5151
</ItemGroup>

0 commit comments

Comments
 (0)