24 lines
852 B
XML
24 lines
852 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<!-- NuGet Package Metadata -->
|
|
<PackageId>SequenceAuth</PackageId>
|
|
<Version>1.0.0</Version>
|
|
<Authors>YourName</Authors>
|
|
<Description>A C# library for Sequence Token Rotation authorization using Redis.</Description>
|
|
<RepositoryUrl>https://github.com/your-repo/SequenceAuth</RepositoryUrl>
|
|
<PackageTags>authentication;redis;security</PackageTags>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Use FrameworkReference for ASP.NET Core types (like HttpContext) instead of the outdated NuGet package -->
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|