Skip to content

Commit

Permalink
Merge pull request #9 from DuendeSoftware/packaging
Browse files Browse the repository at this point in the history
Readme, license, and package icon
  • Loading branch information
josephdecock authored Oct 24, 2024
2 parents c9faf5d + 3c62b69 commit c9cda56
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Duende Extensions for ASP.NET

Extensions for ASP.NET to help with leveraging advanced features of Duende IdentityServer
Extensions for ASP.NET to leverage advanced features of Duende IdentityServer.

### Extensions for the JwtBearer authentication handler

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand All @@ -16,6 +19,12 @@
<MinVerTagPrefix>anc-</MinVerTagPrefix>
</PropertyGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath=""/>
<None Include="icon.png" Pack="true" PackagePath=""/>
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
<PackageReference Include="IdentityModel" />
Expand Down
3 changes: 3 additions & 0 deletions src/AspNetCore.Authentication.JwtBearer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Extensions for the [ASP.NET JwtBearer authentication handler](https://www.nuget.org/packages/Microsoft.AspNetCore.Authentication.JwtBearer) to leverage advanced features of Duende IdentityServer.

* Adds support for [DPoP](https://datatracker.ietf.org/doc/rfc9449/)

0 comments on commit c9cda56

Please sign in to comment.