Added a new .NET project `DigitalData.Auth.Claims` targeting `net8.0` with metadata for NuGet packaging. The project is configured to not generate a NuGet package on build. Introduced the `EnvelopeClaimNames` static class to define strongly-typed constants for custom JWT claim names specific to envelope receiver tokens. These include `EnvelopeId`, `EnvelopeUuid`, `ReceiverId`, and `ReceiverSignature`. Added XML documentation for all constants.
30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<!-- NuGet package metadata -->
|
|
<PackageId>DigitalData.Auth.Claims</PackageId>
|
|
<Authors>Digital Data GmbH</Authors>
|
|
<Company>Digital Data GmbH</Company>
|
|
<Product>DigitalData.Auth.Claims</Product>
|
|
<Description>
|
|
Provides strongly-typed JWT claim name constants for the DigitalData.Auth ecosystem.
|
|
Includes domain-specific claim definitions (e.g. envelope and receiver claims)
|
|
to be shared across API, client, and consumer projects.
|
|
</Description>
|
|
<Copyright>Copyright 2026 Digital Data GmbH</Copyright>
|
|
<RepositoryUrl>https://git.dd/AppStd/DigitalData.Auth</RepositoryUrl>
|
|
<PackageTags>digital data auth claims jwt constants</PackageTags>
|
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
|
<Version>1.0.0</Version>
|
|
<AssemblyVersion>1.0.0</AssemblyVersion>
|
|
<FileVersion>1.0.0</FileVersion>
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|
|
|