Codebelt.SharedKernel 0.2.0

dotnet add package Codebelt.SharedKernel --version 0.2.0
NuGet\Install-Package Codebelt.SharedKernel -Version 0.2.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="Codebelt.SharedKernel" Version="0.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Codebelt.SharedKernel --version 0.2.0
#r "nuget: Codebelt.SharedKernel, 0.2.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.
// Install Codebelt.SharedKernel as a Cake Addin
#addin nuget:?package=Codebelt.SharedKernel&version=0.2.0

// Install Codebelt.SharedKernel as a Cake Tool
#tool nuget:?package=Codebelt.SharedKernel&version=0.2.0

Codebelt.SharedKernel

An open-source project (MIT license) offering a lightweight .NET library with essential components for implementing the shared kernel pattern within the context of Domain-Driven Design (DDD). It provides generic and reusable (Single) Value Objects utilizing the Savvyio.Domain package for fundamental classes, records and interfaces.

Essential code for your ever growing toolbelt of code.

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.0 87 4/12/2024
0.1.0 75 4/3/2024

Version: 0.2.0
Availability: .NET 8
 
# New Features
- ADDED Token record in the Codebelt.SharedKernel namespace that represents an object that can be used for storing sensitive data
- ADDED TokenOptions class in the Codebelt.SharedKernel namespace that specifies options that is related to the Token record
- ADDED CorrelationId record in the Codebelt.SharedKernel namespace that represents an object that can be used as unique identifier that help you trace requests across multiple services in a distributed system
 
Version: 0.1.0
Availability: .NET 8
 
# New Features
- ADDED AccessKey record in the Codebelt.SharedKernel.Security namespace that represents an object that can be used for API key-based authentication and similar
- ADDED AccessKeyExtensions class in the Codebelt.SharedKernel.Security namespace that consist of extension methods for the AccessKey record: IsValid
- ADDED AccessKeyOptions class in the Codebelt.SharedKernel.Security namespace that specifies options that is related to the AccessKey record
- ADDED Secret record in the Codebelt.SharedKernel.Security namespace that represents an object that can be used for storing sensitive data
- ADDED ClockSkew record in the Codebelt.SharedKernel namespace that represents an object that can be used to warrant for clock skew related scenarios such as authentication
- ADDED ComparableValueObject class in the Codebelt.SharedKernel namespace that provides an implementation of SingleValueObject{T} tailored for handling a single value that implements the IComparable{T} interface
- ADDED CoordinatedUniversalTime record in the Codebelt.SharedKernel namespace that represents an object that can be used when you need a timestamp that is based on an absolute time (UTC)
- ADDED TimeToLive record in the Codebelt.SharedKernel namespace that represents an object that can be used when issuing authentication tokens or similar (TTL)