VOOZH about

URL: https://www.nuget.org/packages/Pervaxis.Core.Abstractions/

⇱ NuGet Gallery | Pervaxis.Core.Abstractions 1.6.0




Pervaxis.Core.Abstractions 1.6.0

dotnet add package Pervaxis.Core.Abstractions --version 1.6.0
 
 
NuGet\Install-Package Pervaxis.Core.Abstractions -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="Pervaxis.Core.Abstractions" Version="1.6.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Pervaxis.Core.Abstractions" Version="1.6.0" />
 
Directory.Packages.props
<PackageReference Include="Pervaxis.Core.Abstractions" />
 
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 Pervaxis.Core.Abstractions --version 1.6.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Pervaxis.Core.Abstractions, 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 Pervaxis.Core.Abstractions@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=Pervaxis.Core.Abstractions&version=1.6.0
 
Install as a Cake Addin
#tool nuget:?package=Pervaxis.Core.Abstractions&version=1.6.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Pervaxis.Core.Abstractions

Core contracts, interfaces, and value objects for the Pervaxis platform. This is the foundation package — all other Pervaxis packages depend on it and it has zero external dependencies.

Installation

dotnet add package Pervaxis.Core.Abstractions

What's in this package

Namespace Contents
Pervaxis.Core.Abstractions.Architecture IDomainEvent, IDomainEntity, IAggregateRoot, IRepository<TEntity,TId>, IUnitOfWork
Pervaxis.Core.Abstractions.Common CorrelationId, PagedResult<T>
Pervaxis.Core.Abstractions.MultiTenancy TenantId, ITenantResolver, ITenantContext, ITenantConfigurationProvider
Pervaxis.Core.Abstractions.Security UserId, EncryptedValue, AuditEntry, IAuditLogger, IEncryptionService, IKeyManagementService, ISecretStore, ITokenValidator

Quick Start

Domain Event

public sealed record OrderPlacedEvent : IDomainEvent
{
 public Guid EventId { get; init; } = Guid.NewGuid();
 public string EventType => "OrderPlaced";
 public int EventVersion => 1;
 public DateTime OccurredAt { get; init; } = DateTime.UtcNow;
 public required CorrelationId CorrelationId { get; init; }
 public required TenantId TenantId { get; init; }
 // domain fields
 public required string OrderId { get; init; }
}

Value Objects

var tenantId = new TenantId("tenant-abc");
var correlationId = CorrelationId.New(); // generates a new Guid-based ID
var userId = new UserId("user-xyz");

Repository Contract

public interface IOrderRepository : IRepository<OrderEntity, Guid>
{
 Task<IReadOnlyList<OrderEntity>> GetByTenantAsync(
 TenantId tenantId, CancellationToken cancellationToken = default);
}

Versioning and Compatibility

This package follows Semantic Versioning. Interfaces and value objects are stable contracts — breaking changes only in major versions, preceded by a minimum two-version [Obsolete] warning window.

Related Packages

Package Purpose
Pervaxis.Core.Exceptions Structured exception envelope (depends on Abstractions)
Pervaxis.Core.Messaging SQS message publishing with IDomainEvent support
Pervaxis.Core.Security IAuditLogger implementation with hash-chained audit trail

Pervaxis Platform · Clarivex Technologies · https://clarivex.tech

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

    • No dependencies.

NuGet packages (9)

Showing the top 5 NuGet packages that depend on Pervaxis.Core.Abstractions:

Package Downloads
Pervaxis.Genesis.Base

Package Description

Pervaxis.Core.Resilience

Polly-based resilience pipelines: retry with exponential backoff, circuit breaker, and timeout. Config-driven per Section 14 of the platform spec.

Pervaxis.Core.Observability

Observability pipeline: structured logging (Serilog/Section 21), OpenTelemetry distributed tracing, correlation context accessor, and log redaction. Implements Sections 16 and 21 of the platform spec.

Pervaxis.Core.Messaging

Messaging infrastructure: AWS SQS for production, RabbitMQ for local development. Message envelopes, dead-letter handling, and outbox integration. Implements Section 13 of the platform spec.

Pervaxis.Core.AI

AI integration: AWS Bedrock abstraction, versioned prompt registry, human approval gates, guardrail policies, and traceable AI invocation results. Implements Section 18 of the platform spec.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.6.0 1,017 6/6/2026