mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-24 02:14:26 +08:00
15 lines
433 B
C#
15 lines
433 B
C#
namespace Plonds.Core.Publishing;
|
|
|
|
public sealed record PlondsCommitDeltaBuildOptions(
|
|
string Platform,
|
|
string CurrentVersion,
|
|
string CurrentPayloadZip,
|
|
string OutputRoot,
|
|
string Channel,
|
|
string BaselineTag,
|
|
string CurrentTag,
|
|
string HashAlgorithm = "sha256",
|
|
string? SourceDirs = null,
|
|
string? FallbackBaselineZip = null,
|
|
string LauncherRelativePath = "LanMountainDesktop.Launcher.exe");
|