PosInformatique.Foundations.EmailAddresses 1.0.0-alpha.1

Prefix Reserved
This is a prerelease version of PosInformatique.Foundations.EmailAddresses.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package PosInformatique.Foundations.EmailAddresses --version 1.0.0-alpha.1
                    
NuGet\Install-Package PosInformatique.Foundations.EmailAddresses -Version 1.0.0-alpha.1
                    
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="PosInformatique.Foundations.EmailAddresses" Version="1.0.0-alpha.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PosInformatique.Foundations.EmailAddresses" Version="1.0.0-alpha.1" />
                    
Directory.Packages.props
<PackageReference Include="PosInformatique.Foundations.EmailAddresses" />
                    
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 PosInformatique.Foundations.EmailAddresses --version 1.0.0-alpha.1
                    
#r "nuget: PosInformatique.Foundations.EmailAddresses, 1.0.0-alpha.1"
                    
#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 PosInformatique.Foundations.EmailAddresses@1.0.0-alpha.1
                    
#: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=PosInformatique.Foundations.EmailAddresses&version=1.0.0-alpha.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=PosInformatique.Foundations.EmailAddresses&version=1.0.0-alpha.1&prerelease
                    
Install as a Cake Tool

PosInformatique.Foundation

<img src="Icon.png" alt="PosInformatique.Foundations icon" width="64" height="64" />

PosInformatique.Foundation is a collection of small, focused .NET libraries that provide simple, reusable building blocks for your applications.

The goal is to avoid shipping a monolithic framework by creating modular NuGet packages, each addressing a single responsibility.

✨ Philosophy

  • Granular: each library is independent, lightweight, and minimal.
  • Composable: you bring exactly the pieces you need, nothing more.
  • Practical: packages can be foundational (value objects, abstractions, contracts) or technical utilities (helpers, validation rules, extensions).
  • Consistent: all packages follow the same naming convention and version alignment.
  • Standards-based: whenever possible, implementations follow well-known standards (e.g. RFC 5322 for email addresses, E.164 for phone numbers,...).

➡️ Each package has no strong dependency on another. You are free to pick only what you need.
➡️ These libraries are not structuring frameworks; they are small utilities meant to fill missing gaps in your applications.

📦 Packages Overview

You can install any package using the .NET CLI or NuGet Package Manager.

Package Description NuGet
<img src="./src/EmailAddresses/Icon.png" alt="PosInformatique.Foundations.EmailAddresses icon" width="48" height="48" /> PosInformatique.Foundation.EmailAddresses Strongly-typed value object representing an email address with validation and normalization. NuGet

Note: Each package is completely independent. You install only what you need.

🚀 Why use PosInformatique.Foundation?

  • Avoid reinventing common value objects and utilities.
  • Apply standards-based implementations (RFC, E.164, ...).
  • Improve consistency across your projects.
  • Get lightweight, modular libraries tailored to single responsibilities.
  • Add missing building blocks to your projects without introducing a heavyweight framework.

📄 License

Licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on PosInformatique.Foundations.EmailAddresses:

Package Downloads
PosInformatique.Foundations.EmailAddresses.Json

Provides a System.Text.Json converter for the EmailAddress value object. Enables seamless serialization and deserialization of RFC 5322 compliant email addresses within JSON documents. Designed to integrate smoothly with System.Text.Json options, ensuring consistent validation and parsing during JSON processing.

PosInformatique.Foundations.EmailAddresses.EntityFramework

Provides Entity Framework Core integration for the EmailAddress value object. Enables seamless mapping of RFC 5322 compliant email addresses as strongly-typed properties in Entity Framework Core entities, with safe conversion to string.

PosInformatique.Foundations.EmailAddresses.FluentValidation

Provides a FluentValidation extension to validate email addresses using the strongly-typed EmailAddress value object (RFC 5322 compliant).

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0-alpha.4 55 9/27/2025
1.0.0-alpha.3 86 9/26/2025
1.0.0-alpha.2 78 9/26/2025
1.0.0-alpha.1 115 9/25/2025

## 1.0.0
- Initial release of **PosInformatique.Foundations.EmailAddresses**
 - Strongly-typed EmailAddress value object