Skip to content

Commit

Permalink
feat(imoc): .net 9
Browse files Browse the repository at this point in the history
OidcClient and extensions add .net 9 and drop .net 6 targets
  • Loading branch information
josephdecock committed Dec 19, 2024
1 parent f30906c commit 5a0b975
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions identity-model-oidc-client/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## About IdentityModel.OidcClient
## About Duende.IdentityModel.OidcClient

This repository contains several libraries for building OpenID Connect (OIDC) native
This directory contains several libraries for building OpenID Connect (OIDC) native
clients. The core `Duende.IdentityModel.OidcClient` library is a certified OIDC relying party and
implements [RFC 8252](https://tools.ietf.org/html/rfc8252/), "OAuth 2.0 for native
Applications". The `Duende.IdentityModel.OidcClient.Extensions` provides support for
[DPoP](https://datatracker.ietf.org/doc/html/rfc9449)
extensions to IdentityModel.OidcClient for sender-constraining tokens.
extensions to Duende.IdentityModel.OidcClient for sender-constraining tokens.

## Samples
OidcClient targets .NET Standard, making it suitable for .NET and .NET
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net8.0;net9.0</TargetFrameworks>
<RootNamespace>Duende.IdentityModel.OidcClient</RootNamespace>
<AssemblyName>Duende.IdentityModel.OidcClient.Extensions</AssemblyName>
<PackageId>Duende.IdentityModel.OidcClient.Extensions</PackageId>
<PackageTags>OAuth2;OAuth 2.0;OpenID Connect;Security;Identity;IdentityServer;DPoP</PackageTags>
<Description>DPoP extensions for IdentityModel.OidcClient</Description>
<PackageReadmePath>README.md</PackageReadmePath>
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable>
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible>
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net8.0;net9.0</TargetFrameworks>
<RootNamespace>Duende.IdentityModel.OidcClient</RootNamespace>
<AssemblyName>Duende.IdentityModel.OidcClient</AssemblyName>
<PackageId>Duende.IdentityModel.OidcClient</PackageId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<RootNamespace>Duende.IdentityModel.OidcClient</RootNamespace>
<AssemblyOriginatorKeyFile>../../../key.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<PublishAot>true</PublishAot>
<TrimmerSingleWarn>false</TrimmerSingleWarn>
Expand Down

0 comments on commit 5a0b975

Please sign in to comment.