dotnet-guidgen 1.0.0

dotnet tool install --global dotnet-guidgen --version 1.0.0
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local dotnet-guidgen --version 1.0.0
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=dotnet-guidgen&version=1.0.0
                    
nuke :add-package dotnet-guidgen --version 1.0.0
                    

GuidGen

A .NET CLI tool to generate GUIDs in various formats.

Installation

dotnet tool install --global dotnet-guidgen

Usage

# Default: one hyphenated GUID
guidgen

# Three uppercase digit-only GUIDs
guidgen --format N --upper --count 3

Options

Option Alias Description Default
--format -f GUID format: N (digits), D (hyphens), B (braces), P (parentheses), X (hex) D
--upper -u Output in uppercase false
--count -c Number of GUIDs to generate 1

License

MIT

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.

This package has no dependencies.

Version Downloads Last Updated
1.0.0 99 4/14/2026

Initial release — supports N, D, B, P, X formats with uppercase and batch options.