mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-24 10:34:26 +08:00
15 lines
438 B
C#
15 lines
438 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? FallbackBaselineZip = null,
|
||
|
|
string? BaselineVersion = null,
|
||
|
|
string LauncherRelativePath = "LanMountainDesktop.Launcher.exe",
|
||
|
|
string HashAlgorithm = "sha256");
|