Wizdle 1.0.18
dotnet add package Wizdle --version 1.0.18
NuGet\Install-Package Wizdle -Version 1.0.18
<PackageReference Include="Wizdle" Version="1.0.18" />
<PackageVersion Include="Wizdle" Version="1.0.18" />
<PackageReference Include="Wizdle" />
paket add Wizdle --version 1.0.18
#r "nuget: Wizdle, 1.0.18"
#:package Wizdle@1.0.18
#addin nuget:?package=Wizdle&version=1.0.18
#tool nuget:?package=Wizdle&version=1.0.18
Wizdle
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 | Versions 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. |
-
.NETStandard 2.0
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.10)
- Wizdle.Models (>= 1.0.18)
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 |