Files
sequence/services/csharp/lib/SequenceAuth.Lib.csproj
T
Vitalii Litvinchuk 23958e8e2c first commit
2026-06-13 23:23:50 +03:00

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>