mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-23 09:54:25 +08:00
14 lines
395 B
C#
14 lines
395 B
C#
|
|
namespace Plonds.Core.Publishing;
|
||
|
|
|
||
|
|
public sealed record PlondsCommitDeltaBuildResult(
|
||
|
|
string Platform,
|
||
|
|
string ChangedZipPath,
|
||
|
|
string ManifestPath,
|
||
|
|
bool IsFullUpdate,
|
||
|
|
bool RequiresCleanInstall,
|
||
|
|
bool FellBackToFileCompare,
|
||
|
|
string CurrentVersion,
|
||
|
|
string? BaselineVersion,
|
||
|
|
IReadOnlyList<string> ChangedSourceFiles,
|
||
|
|
IReadOnlyList<string> MappedArtifactFiles);
|