|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.1;net8.0;net9.0;net10.0</TargetFrameworks> |
5 | | - <Version>3.1.0</Version> |
6 | | - <Authors>Bruno Brito</Authors> |
7 | | - <PackageIconUrl>https://raw.githubusercontent.com/NetDevPack/NetDevPack/master/assets/IconNuget.png</PackageIconUrl> |
8 | | - <PackageTags>jwt jwks jwks_uri</PackageTags> |
9 | | - <Title>Extension to load JWKS from custom uri</Title> |
10 | | - <Description>Component for easy use of JWKS endpoint for Assymetric keys</Description> |
11 | | - <NeutralLanguage>en</NeutralLanguage> |
12 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
13 | | - <RepositoryUrl>https://github.com/brunohbrito/Jwks.Manager</RepositoryUrl> |
14 | | - <RepositoryType>git</RepositoryType> |
15 | | - </PropertyGroup> |
| 3 | +<PropertyGroup> |
| 4 | + <TargetFrameworks>netstandard2.1;net8.0;net9.0;net10.0</TargetFrameworks> |
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <LangVersion>latest</LangVersion> |
| 8 | + <PackageId>NetDevPack.Security.JwtExtensions</PackageId> |
| 9 | + <Version>3.1.0</Version> |
| 10 | + <Authors>brunobritodev</Authors> |
| 11 | + <Company>NetDevPack</Company> |
| 12 | + <Title>JWKS URI Loader for JWT Validation</Title> |
| 13 | + <Description> |
| 14 | + A .NET library that simplifies consuming JSON Web Key Sets (JWKS) from external URIs |
| 15 | + to validate JWT tokens using asymmetric keys. Reduces the complexity of handling remote key rotation. |
| 16 | + </Description> |
| 17 | + <PackageTags>jwt;jwks;jwk;jwks-uri;token-validation;security;cryptography;key-rotation;dotnet</PackageTags> |
| 18 | + <NeutralLanguage>en</NeutralLanguage> |
| 19 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 20 | + <RepositoryUrl>https://github.com/NetDevPack/Security.JwtExtensions</RepositoryUrl> |
| 21 | + <RepositoryType>git</RepositoryType> |
| 22 | + <RepositoryBranch>main</RepositoryBranch> |
| 23 | + <PackageProjectUrl>https://github.com/NetDevPack/Security.JwtExtensions</PackageProjectUrl> |
| 24 | + <PackageIcon>icon.png</PackageIcon> |
| 25 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 26 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 27 | + <IncludeSymbols>true</IncludeSymbols> |
| 28 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 29 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 30 | + |
| 31 | + <!-- Release notes --> |
| 32 | + <PackageReleaseNotes> |
| 33 | + v10.0.0: |
| 34 | + - Simplifies loading JWKS from remote URIs |
| 35 | + - Supports automatic key refresh scenarios |
| 36 | + - Designed for JWT validation with asymmetric keys |
| 37 | + </PackageReleaseNotes> |
| 38 | +</PropertyGroup> |
| 39 | + |
| 40 | + <ItemGroup> |
| 41 | + <None Include="..\..\icon.png" Pack="true" PackagePath="\" /> |
| 42 | + <None Include="..\..\README.md" Pack="true" PackagePath="\" /> |
| 43 | + </ItemGroup> |
16 | 44 |
|
17 | 45 | <ItemGroup> |
18 | 46 | <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.15.0" /> |
|
0 commit comments