Files
LanMountainDesktop/PenguinLogisticsOnlineNetworkDistributionSystem/src/Plonds.Core/Publishing/PlondsCommitDeltaBuildOptions.cs

15 lines
433 B
C#
Raw Normal View History

namespace Plonds.Core.Publishing;
public sealed record PlondsCommitDeltaBuildOptions(
string Platform,
string CurrentVersion,
string CurrentPayloadZip,
string OutputRoot,
string Channel,
string BaselineTag,
string CurrentTag,
2026-05-30 13:47:15 +08:00
string HashAlgorithm = "sha256",
string? SourceDirs = null,
string? FallbackBaselineZip = null,
2026-05-30 13:47:15 +08:00
string LauncherRelativePath = "LanMountainDesktop.Launcher.exe");