Blueprintr 0.2.1
dotnet add package Blueprintr --version 0.2.1
NuGet\Install-Package Blueprintr -Version 0.2.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="Blueprintr" Version="0.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Blueprintr" Version="0.2.1" />
<PackageReference Include="Blueprintr" />
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 Blueprintr --version 0.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Blueprintr, 0.2.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 Blueprintr@0.2.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=Blueprintr&version=0.2.1
#tool nuget:?package=Blueprintr&version=0.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Blueprintr
Production-ready boilerplate utilities library for .NET projects including converters, validators, extensions, and common patterns.
Installation
dotnet add package Blueprintr
Features
- Type Converters - Convert between Guid7, ULID, IP addresses, and more
- Validators - FluentValidation validators for common scenarios
- Extensions - Useful extension methods for strings, collections, and entities
- Utilities - Password hashing, character sets, file detection
- Entity Framework - Base entity classes and interfaces
- Fully documented with XML comments
- .NET 10.0 target framework
Quick Start
Type Converters
using Blueprintr.Converters;
// Convert Guid7
var guid7Converter = new Guid7Converter();
var guid = guid7Converter.ConvertFromProvider("some-value");
// Convert IP addresses
var ipConverter = new IpAddressConverter();
var ip = ipConverter.ConvertFromProvider("192.168.1.1");
// Convert ULIDs
var ulidConverter = new UlidConverter();
var ulid = ulidConverter.ConvertToProvider(Guid.NewGuid());
Password Hashing
using Blueprintr.Utils;
// Generate salt and hash password
var salt = PasswordHasher.GenerateSaltHexString();
var hash = PasswordHasher.HashHexString("password123", salt);
// Verify password
bool isValid = PasswordHasher.Verify("password123", hash, salt);
Character Sets
using Blueprintr.Utils;
// Use predefined character sets
var alphanumeric = CharSets.Alphanumeric;
var digits = CharSets.Numeric;
var lowercase = CharSets.LowerAlphabetic;
API Documentation
For complete API documentation, visit the Blueprintr Documentation.
Contributing
Contributions are welcome! Please read the Contributing Guide.
License
This project is licensed under the GNU Affero General Public License v3.0 - see the LICENSE file for details.
Support
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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.
-
net10.0
- AspNetCore.HealthChecks.NpgSql (>= 9.0.0)
- AspNetCore.HealthChecks.Redis (>= 9.0.0)
- EFCore.NamingConventions (>= 10.0.1)
- FileSignatures (>= 6.1.1)
- FluentValidation (>= 12.1.1)
- FluentValidation.DependencyInjectionExtensions (>= 12.1.1)
- Microsoft.EntityFrameworkCore (>= 10.0.2)
- NodaTime (>= 3.3.0)
- NodaTime.Serialization.SystemTextJson (>= 1.3.0)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 10.0.0)
- Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime (>= 10.0.0)
- Scalar.AspNetCore (>= 2.12.18)
- Serilog.AspNetCore (>= 10.0.0)
- Ulid (>= 1.4.1)
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.1 | 96 | 1/28/2026 |
| 0.2.0 | 91 | 1/28/2026 |
| 0.1.1-alpha.0.6 | 51 | 1/27/2026 |