mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
15 lines
406 B
C#
15 lines
406 B
C#
namespace Plonds.Core.Publishing;
|
|
|
|
public sealed record PlondsDeltaBuildOptions(
|
|
string Platform,
|
|
string CurrentVersion,
|
|
string CurrentTag,
|
|
string CurrentPayloadZip,
|
|
string OutputRoot,
|
|
string PrivateKeyPath,
|
|
string Channel = "stable",
|
|
string? BaselineVersion = null,
|
|
string? BaselineTag = null,
|
|
string? BaselinePayloadZip = null,
|
|
bool IsFullPayload = false);
|