Wizdle 1.0.18

dotnet add package Wizdle --version 1.0.18
                    
NuGet\Install-Package Wizdle -Version 1.0.18
                    
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="Wizdle" Version="1.0.18" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Wizdle" Version="1.0.18" />
                    
Directory.Packages.props
<PackageReference Include="Wizdle" />
                    
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 Wizdle --version 1.0.18
                    
#r "nuget: Wizdle, 1.0.18"
                    
#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 Wizdle@1.0.18
                    
#: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=Wizdle&version=1.0.18
                    
Install as a Cake Addin
#tool nuget:?package=Wizdle&version=1.0.18
                    
Install as a Cake Tool

Wizdle

Build & Test Solve Wordle Today Mutation testing badge NuGet Downloads

A C# library for solving Wordle.

Wordle is a word puzzle where you guess a 5-letter word in 6 attempts. Each guess reveals which letters are correct, misplaced, or absent. Wizdle takes that feedback and returns a filtered list of candidate words.

Target Framework: netstandard2.0  |  License: MIT

Install

dotnet add package Wizdle

Available on NuGet and GitHub.

Prerequisites

Prerequisite Note
ILogger implementation This library requires an implementation of Microsoft.Extensions.Logging to construct. (See the Serilog example in Wizdle.Integration.Tests/Logger.cs.)

The only external dependency is Microsoft.Extensions.Logging.Abstractions — the lightweight abstractions package, not the full logging stack.

Input Format

Each letter property uses a 5-character string. Use . as a placeholder for an unknown letter at that position.

Property Description Example
CorrectLetters Letters at their exact position "....t"t confirmed in position 5
MisplacedLetters Letters present in the word but at the wrong position "..rs."r misplaced in pos 3, s misplaced in pos 4
ExcludeLetters Letters confirmed not in the word "haebu"

Example

using Wizdle;
using Wizdle.Models;

var wizdleEngine = new WizdleEngine(_logger);

var request = new WizdleRequest
{
    CorrectLetters = "....t",
    MisplacedLetters = "..rs.",
    ExcludeLetters = "haebu",
};

WizdleResponse response = wizdleEngine.ProcessWizdleRequest(request);
// response.Words: contains at least ["skirt", "snort", "sport"]

Response

Property Type Description
Words IEnumerable<string> Words matching the given criteria
Messages IEnumerable<string> Informational messages about the request processed
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.  net9.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
1.0.18 38 7/25/2026
1.0.17 59 7/21/2026
1.0.16 92 7/15/2026
1.0.15 106 7/8/2026
1.0.14 93 7/8/2026
1.0.13 126 5/9/2026
1.0.12 111 5/1/2026
1.0.11 109 4/18/2026
1.0.10 108 4/16/2026
1.0.9 115 3/23/2026
1.0.8 137 1/3/2026
1.0.7 126 1/3/2026
1.0.6 134 1/3/2026
1.0.5 126 1/3/2026
1.0.4 126 1/2/2026
1.0.3 125 1/2/2026
1.0.2 134 1/1/2026
1.0.1 270 6/4/2025
1.0.0 232 5/29/2025