ManacostLabs.Deckstrings 1.0.0

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

Manacost Labs Hearthstone Deckstrings for .NET

Dependency-free encoding, decoding, validation, and clipboard export support for Hearthstone version 1 deckstrings. The same golden fixtures are used by the JavaScript, PHP, Python, and .NET packages in this repository.

The NuGet package targets netstandard2.0, net8.0, and net10.0. It supports modern .NET applications while retaining broad compatibility with runtimes that implement .NET Standard 2.0.

Install

dotnet add package ManacostLabs.Deckstrings --version 1.0.0

Encode and decode

using ManacostLabs.Deckstrings;

var deck = Deckstrings.Decode("AAEBAQcBBAMBAgMAAA==");
var canonicalDeckstring = Deckstrings.Encode(deck);

Decode accepts legacy deckstrings without a sideboard marker. Encode always returns the canonical representation.

Canonicalize and validate

Canonicalize returns a sorted copy and never mutates the caller-owned model. It throws DeckstringException when the model cannot be canonicalized safely.

var canonical = Deckstrings.Canonicalize(deck);

Validate is intended for ordinary user input and returns every discovered problem without throwing:

var result = Deckstrings.Validate(deck);
if (!result.IsValid)
{
    foreach (var error in result.Errors)
    {
        Console.WriteLine($"{error.Code} at {error.Path}: {error.Message}");
    }
}

Duplicate hero IDs, duplicate card IDs, and duplicate sideboard (ownerDbfId, dbfId) pairs are invalid and are never merged silently. For backward compatibility, Canonicalize and Encode omit legacy zero-count entries; Validate reports them as invalid_count.

The package validates a typed Deck and does not deserialize JSON. If an API must reject unknown JSON fields, configure that behavior in its serializer before calling Validate.

Shared JSON transport

Deck remains the idiomatic .NET model. Use DeckTransport at HTTP and JSON boundaries when the exact cross-language schema is required. It exposes numeric Format, Heroes, [dbfId, count] card arrays, and [dbfId, count, ownerDbfId] sideboard arrays. ToTransport canonicalizes the deck; FromTransport validates the tuple shape and returns a canonical Deck.

using System.Text.Json;
using ManacostLabs.Deckstrings;

var options = new JsonSerializerOptions
{
    PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
};

var transport = Deckstrings.ToTransport(deck);
var json = JsonSerializer.Serialize(transport, options);
// {"format":1,"heroes":[7],"cards":[[1,2],[2,2],[3,2],[4,1]],"sideboardCards":[]}

var input = JsonSerializer.Deserialize<DeckTransport>(json, options)
    ?? throw new InvalidOperationException("Missing deck JSON.");
var restored = Deckstrings.FromTransport(input);

Project validation in the same way. ValidationResultTransport and ValidationErrorTransport expose the exact valid, errors, code, path, and message shape when the same camel-case policy is used:

var validation = Deckstrings.ToTransport(Deckstrings.Validate(restored));
var validationJson = JsonSerializer.Serialize(validation, options);

The library itself does not reference System.Text.Json; applications may use their serializer of choice as long as public property names are emitted in camel case. Configure unknown-property rejection in that serializer when raw JSON must satisfy additionalProperties: false.

Clipboard exports

Parse the complete text copied by Hearthstone while preserving the name and comment metadata:

var parsed = Deckstrings.ParseExport(clipboardText);

Console.WriteLine(parsed.Deckstring);          // always canonical
Console.WriteLine(parsed.Metadata.Name);
Console.WriteLine(parsed.Deck.Cards.Count);

Format deterministic LF output. An optional resolver can add localized card display lines without coupling the codec to a card database or network API:

var text = Deckstrings.FormatExport(
    parsed.Deck,
    parsed.Metadata,
    dbfId => cardDatabase.TryGetValue(dbfId, out var card)
        ? new CardDisplay(card.Name, card.Cost)
        : null);

The resolver is also called for sideboard cards; those lines include a [sideboard:ownerDbfId] suffix.

Error handling

Malformed deckstrings and invalid canonicalization input raise DeckstringException. Match its stable ErrorCode property rather than its human-readable Message:

try
{
    Deckstrings.Decode("not-base64!");
}
catch (DeckstringException error) when (
    error.ErrorCode == DeckstringErrorCodes.InvalidBase64)
{
    // Ask the caller for another deckstring.
}

The shared error contract and defensive limits are documented in ../../spec/README.md.

Package quality

Release builds enable nullable annotations, XML API documentation, .NET SDK analyzers, deterministic compilation, Source Link metadata, package validation, portable symbols, and .snupkg symbol packages. The NuGet package embeds this README and repository metadata.

To verify the package from the repository root:

dotnet build packages/dotnet/src/ManacostLabs.Deckstrings/ManacostLabs.Deckstrings.csproj --configuration Release
dotnet test packages/dotnet/tests/ManacostLabs.Deckstrings.Tests/ManacostLabs.Deckstrings.Tests.csproj --configuration Release
dotnet run --project packages/dotnet/tests/ManacostLabs.Deckstrings.Compatibility/ManacostLabs.Deckstrings.Compatibility.csproj --configuration Release -- fixtures/deckstrings.json
dotnet pack packages/dotnet/src/ManacostLabs.Deckstrings/ManacostLabs.Deckstrings.csproj --configuration Release --no-build
dotnet run --project packages/dotnet/tests/ManacostLabs.Deckstrings.Consumer/ManacostLabs.Deckstrings.Consumer.csproj --configuration Release --framework net8.0
dotnet run --project packages/dotnet/tests/ManacostLabs.Deckstrings.Consumer/ManacostLabs.Deckstrings.Consumer.csproj --configuration Release --framework net10.0

The compatibility runner reads deckstrings.json, api.json, and exports.json directly from the shared fixtures directory. The consumer project references the packed NuGet artifact rather than the source project.

Licensed under the repository's ISC license.

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 is compatible.  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 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. 
.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.
  • .NETStandard 2.0

    • No dependencies.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.

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.0 113 8/13/2026