Files
LanMountainDesktop/PenguinLogisticsOnlineNetworkDistributionSystem/src/Plonds.Core/Publishing/PlondsCommitDeltaBuildOptions.cs
2026-05-30 13:47:15 +08:00

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");