mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-28 21:34:28 +08:00
13 lines
395 B
C#
13 lines
395 B
C#
namespace Plonds.Core.Publishing;
|
|
|
|
public sealed record PlondsDeltaBuildOptions(
|
|
string Platform,
|
|
string CurrentVersion,
|
|
string CurrentPayloadZip,
|
|
string OutputRoot,
|
|
string Channel = "stable",
|
|
string? BaselineVersion = null,
|
|
string? BaselinePayloadZip = null,
|
|
string LauncherRelativePath = "LanMountainDesktop.Launcher.exe",
|
|
string HashAlgorithm = "sha256");
|