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" />
                    
Directory.Packages.props
<PackageReference Include="Blueprintr" />
                    
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 Blueprintr --version 0.2.1
                    
#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
                    
Install as a Cake Addin
#tool nuget:?package=Blueprintr&version=0.2.1
                    
Install as a Cake Tool

Blueprintr

Production-ready boilerplate utilities library for .NET projects including converters, validators, extensions, and common patterns.

NuGet

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 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.

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