fix.依旧在调整我们的在线安装器

This commit is contained in:
lincube
2026-06-03 12:32:56 +08:00
parent 75c7aece4f
commit bb4e90ea8d
8 changed files with 820 additions and 301 deletions

View File

@@ -63,9 +63,11 @@ public sealed record OnlineInstallPackageInfo(
Uri FilesZipUrl,
long EstimatedBytes);
public sealed record OnlineInstallOptions(bool CreateDesktopShortcut)
public sealed record OnlineInstallOptions(bool CreateDesktopShortcut, bool CreateStartupShortcut)
{
public static OnlineInstallOptions Default { get; } = new(CreateDesktopShortcut: false);
public static OnlineInstallOptions Default { get; } = new(
CreateDesktopShortcut: false,
CreateStartupShortcut: false);
}
internal sealed record InstallerPlondsCandidate(