mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 16:14:28 +08:00
17 lines
501 B
C#
17 lines
501 B
C#
|
|
namespace Plonds.Core.Publishing;
|
||
|
|
|
||
|
|
public sealed record PlondsGenerateOptions(
|
||
|
|
string CurrentVersion,
|
||
|
|
string CurrentDirectory,
|
||
|
|
string Platform,
|
||
|
|
string OutputRoot,
|
||
|
|
string PreviousVersion = "0.0.0",
|
||
|
|
string? PreviousDirectory = null,
|
||
|
|
string Channel = "stable",
|
||
|
|
string? DistributionId = null,
|
||
|
|
string? RepoBaseUrl = null,
|
||
|
|
string? FileMapUrl = null,
|
||
|
|
string? FileMapSignatureUrl = null,
|
||
|
|
string? InstallerDirectory = null,
|
||
|
|
string? InstallerBaseUrl = null);
|