finish migration

This commit is contained in:
2024-06-27 06:22:43 +02:00
parent 07853467b1
commit f5d44e684f
28 changed files with 101 additions and 1915 deletions

View File

@@ -1,10 +1,4 @@
using System.ComponentModel;
using System.Configuration;
using System.Diagnostics;
using System.IO.Compression;
using System.Runtime.CompilerServices;
using System.Security.Principal;
using Z.IO.Extensions;
using System.IO.Compression;
namespace Pilz.Updating.Client;
@@ -26,8 +20,6 @@ public class UpdateClient(string updateUrl, AppVersion currentVersion, Channels
public Channels MinimumChannel { get; private set; } = (Channels)Math.Max((int)minimumChannel, (int)currentVersion.Channel);
public UpdateInfo UpdateInfo { get; private set; } = null;
public UpdatePackageInfo UpdatePackageInfo { get; private set; } = null;
public bool AutoCloseHostApplication { get; set; } = false;
public string RestartHostApplicationArguments { get; set; }
public string HostApplicationPath { get; set; } = string.Empty;
public string ApplicationName { get; set; } = string.Empty;
public bool InstallAsAdmin { get; set; } = false;