TAF.Infra.Licensing 1.6.0

dotnet add package TAF.Infra.Licensing --version 1.6.0
                    
NuGet\Install-Package TAF.Infra.Licensing -Version 1.6.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TAF.Infra.Licensing" Version="1.6.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TAF.Infra.Licensing" Version="1.6.0" />
                    
Directory.Packages.props
<PackageReference Include="TAF.Infra.Licensing" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TAF.Infra.Licensing --version 1.6.0
                    
#r "nuget: TAF.Infra.Licensing, 1.6.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package TAF.Infra.Licensing@1.6.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TAF.Infra.Licensing&version=1.6.0
                    
Install as a Cake Addin
#tool nuget:?package=TAF.Infra.Licensing&version=1.6.0
                    
Install as a Cake Tool

Pure licensing/entitlement contract shared by IdentityService, taf_crud and taf_infra: the persisted smallint
     enums, the subscription/package-version/invoice state machines that guard every status transition, and the
     access-semantics map. Deliberately dependency-free (no EF, no MassTransit, no CRUD) so any service can reference it.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on TAF.Infra.Licensing:

Package Downloads
TAF.Infra.MassTransit

A comprehensive abstraction layer over MediatR and MassTransit that provides unified Command, Query, and Event handling patterns with support for both local (in-process) and distributed (message broker) execution. Features include CQRS pattern implementation, context-aware messaging, multi-tenant support, automatic handler registration, and support for multiple message brokers (RabbitMQ, Azure Service Bus, Amazon SQS).

TAF.Infra.Metering

The usage-metering seam shared by every producing service: the IUsageMeter abstraction, the quota decision model, and the UsageRecordedEvent contract. Deliberately thin — it depends on TAF.Infra.MassTransit for the event bus and TAF.Infra.Licensing for the resource and period enums, and on nothing else. IdentityService owns the counters and the rollup; taf_crud, taf_fileservice, taf_notificationservice, taf_codeexecutor and taf_workflowengine only produce, and must be able to do so without referencing Identity.

TAF.Identity.SDK

HTTP client SDK for TAF IdentityService. Owns the service-auth routes, the credential header and the response contracts, so a consumer cannot call a path that does not exist or send a header nothing reads. v1.0.1: plan entitlements (licensing Gate A) and the platform lifecycle sweeps; the service credential falls back to ServiceAuth:ApiKey.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.6.0 275 8/4/2026

1.6.0 — Adds the marketplace enums: KycStatus, FeeType and PayoutStatus. All `: short`. KycStatus and
     PayoutStatus deliberately have no state machine — like PaymentTxnStatus they record what the gateway
     reported, not a lifecycle we control, and guarding them would mean rejecting the truth because it
     arrived out of order. Purely additive.

     1.5.0 — Adds the invoicing enums the billing ledger persists: InvoiceType, BillingReason,
     InvoiceLineSource, PaymentTxnType and PaymentTxnStatus. All `: short`, matching the smallint columns.
     Purely additive; nothing existing changed. PaymentTxnStatus deliberately has no state machine — it
     records what the gateway reported, not a lifecycle we control.