Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 17c502a

Browse files
committed
Add dotnet core as a target framework
This avoids some dependency issues, since IdentityModel targets both netstandard and net6.0. In the IM netstandard build, we include the System.Text.Json dependency explicitly. In the IM net6.0 build, we don't, because that's built in. This would cause an issue if an application targeted net6.0 and depended on OidcClient. If OidcClient only targets netstandard, then when it depends on IM, we get the netstandard build of IM, and bring along the System.Text.Json dependency.
1 parent 3b62a00 commit 17c502a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DPoP/DPoP.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<RootNamespace>IdentityModel.OidcClient.DPoP</RootNamespace>
66
<AssemblyName>IdentityModel.OidcClient.DPoP</AssemblyName>
77

8-
<TargetFramework>netstandard2.0</TargetFramework>
8+
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
99
<LangVersion>latest</LangVersion>
1010
<Nullable>enable</Nullable>
1111

0 commit comments

Comments
 (0)