Table of Contents

Class BundleVariant

Namespace
CobaltPdf.WebKit.Infrastructure.Provisioning
Assembly
CobaltPDF.WebKit.dll

One buildable bundle for a RID, distinguished by its glibc floor. The host must have glibc ≥ MinGlibc to run it.

public sealed record BundleVariant : IEquatable<BundleVariant>
Inheritance
BundleVariant
Implements
Inherited Members

Constructors

BundleVariant(string, Version, string, string)

One buildable bundle for a RID, distinguished by its glibc floor. The host must have glibc ≥ MinGlibc to run it.

public BundleVariant(string Id, Version MinGlibc, string Sha256, string Description)

Parameters

Id string

Short variant tag used in the tarball name + cache path (e.g. u2204).

MinGlibc Version

Minimum host glibc this build's binaries require.

Sha256 string

Expected SHA-256 of the tarball; empty = not yet published.

Description string

Human-readable summary for diagnostics.

Properties

Description

Human-readable summary for diagnostics.

public string Description { get; init; }

Property Value

string

Id

Short variant tag used in the tarball name + cache path (e.g. u2204).

public string Id { get; init; }

Property Value

string

MinGlibc

Minimum host glibc this build's binaries require.

public Version MinGlibc { get; init; }

Property Value

Version

Sha256

Expected SHA-256 of the tarball; empty = not yet published.

public string Sha256 { get; init; }

Property Value

string