Skip to content

Commit 00c9695

Browse files
committed
fix: drop support for non LTS versions
1 parent df2efd4 commit 00c9695

2 files changed

Lines changed: 41 additions & 13 deletions

File tree

icon.png

29.3 KB
Loading

src/NetDevPack.Security.JwtExtensions/NetDevPack.Security.JwtExtensions.csproj

Lines changed: 41 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,46 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

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>
1644

1745
<ItemGroup>
1846
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.15.0" />

0 commit comments

Comments
 (0)