mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.Deployment.git
synced 2025-11-19 21:08:45 +08:00
Compare commits
5 Commits
1.16.1
...
qhy040404-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
80584305db | ||
|
|
5a830c21cf | ||
|
|
ab96c9be33 | ||
|
|
d6f15608d9 | ||
|
|
6867e5e914 |
@@ -2,7 +2,7 @@
|
|||||||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>Snap.Hutao.Deployment.Runtime</id>
|
<id>Snap.Hutao.Deployment.Runtime</id>
|
||||||
<version>1.11.0</version>
|
<version>1.12.0</version>
|
||||||
<authors>DGP Studio</authors>
|
<authors>DGP Studio</authors>
|
||||||
<developmentDependency>true</developmentDependency>
|
<developmentDependency>true</developmentDependency>
|
||||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||||
|
|||||||
@@ -134,7 +134,10 @@ internal static partial class Invocation
|
|||||||
if (!isUpdateMode)
|
if (!isUpdateMode)
|
||||||
{
|
{
|
||||||
Console.WriteLine("Press enter to exit...");
|
Console.WriteLine("Press enter to exit...");
|
||||||
while (Console.ReadKey(true).Key != ConsoleKey.Enter) ;
|
while (Console.ReadKey(true).Key != ConsoleKey.Enter)
|
||||||
|
{
|
||||||
|
//Pending enter key
|
||||||
|
}
|
||||||
FreeConsole();
|
FreeConsole();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -21,6 +21,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
|
||||||
|
<PackageReference Include="System.ServiceProcess.ServiceController" Version="8.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,8 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.IO.Compression;
|
using System.IO.Compression;
|
||||||
|
using System.Linq;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
using System.ServiceProcess;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Windows.Management.Deployment;
|
using Windows.Management.Deployment;
|
||||||
@@ -25,7 +29,7 @@ internal static partial class WindowsAppSDKDependency
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (CheckRuntimeInstalled(packageName, msixVersion))
|
if (await CheckRuntimeInstalledAndVerifyAsync(packageName, msixVersion).ConfigureAwait(false))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -63,19 +67,21 @@ internal static partial class WindowsAppSDKDependency
|
|||||||
return string.Empty;
|
return string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static bool CheckRuntimeInstalled(string packageName, string msixVersion)
|
private static async Task<bool> CheckRuntimeInstalledAndVerifyAsync(string packageName, string msixVersion)
|
||||||
{
|
{
|
||||||
Version msixMinVersion = new(msixVersion);
|
Version msixMinVersion = new(msixVersion);
|
||||||
|
|
||||||
|
List<bool> results = [];
|
||||||
|
|
||||||
foreach (Windows.ApplicationModel.Package installed in new PackageManager().FindPackages())
|
foreach (Windows.ApplicationModel.Package installed in new PackageManager().FindPackages())
|
||||||
{
|
{
|
||||||
if (installed.Id.Name == packageName && installed.Id.Version.ToVersion() >= msixMinVersion)
|
if (installed.Id.Name == packageName && installed.Id.Version.ToVersion() >= msixMinVersion)
|
||||||
{
|
{
|
||||||
return true;
|
results.Add(await installed.VerifyContentIntegrityAsync());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return results.Aggregate((result, element) => result || element);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static async Task DownloadWindowsAppRuntimeInstallAndInstallAsync(string version)
|
private static async Task DownloadWindowsAppRuntimeInstallAndInstallAsync(string version)
|
||||||
@@ -100,6 +106,23 @@ internal static partial class WindowsAppSDKDependency
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ServiceController serviceController = new("appxsvc");
|
||||||
|
if (serviceController.CanStop)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Stopping AppxSvc...");
|
||||||
|
serviceController.Stop();
|
||||||
|
serviceController.WaitForStatus(ServiceControllerStatus.Stopped, TimeSpan.FromSeconds(5));
|
||||||
|
|
||||||
|
if (serviceController.Status is not ServiceControllerStatus.Stopped)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Can not stop AppxSvc, timeout...");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Console.WriteLine("Can not stop AppxSvc, disallowed...");
|
||||||
|
}
|
||||||
|
|
||||||
Console.WriteLine("Start installing SDK...");
|
Console.WriteLine("Start installing SDK...");
|
||||||
Process installerProcess = new()
|
Process installerProcess = new()
|
||||||
{
|
{
|
||||||
@@ -116,12 +139,13 @@ internal static partial class WindowsAppSDKDependency
|
|||||||
installerProcess.OutputDataReceived += (sender, e) => Console.WriteLine(e.Data);
|
installerProcess.OutputDataReceived += (sender, e) => Console.WriteLine(e.Data);
|
||||||
installerProcess.ErrorDataReceived += (sender, e) => Console.WriteLine(e.Data);
|
installerProcess.ErrorDataReceived += (sender, e) => Console.WriteLine(e.Data);
|
||||||
installerProcess.Start();
|
installerProcess.Start();
|
||||||
Console.WriteLine("-----> WindowsAppRuntimeInstall Output begin -----");
|
Console.WriteLine("-----> WindowsAppRuntimeInstall Output begin");
|
||||||
installerProcess.BeginOutputReadLine();
|
installerProcess.BeginOutputReadLine();
|
||||||
installerProcess.BeginErrorReadLine();
|
installerProcess.BeginErrorReadLine();
|
||||||
|
|
||||||
await installerProcess.WaitForExitAsync().ConfigureAwait(false);
|
await installerProcess.WaitForExitAsync().ConfigureAwait(false);
|
||||||
Console.WriteLine("<----- WindowsAppRuntimeInstall Output end -------");
|
Marshal.ThrowExceptionForHR(installerProcess.ExitCode);
|
||||||
|
Console.WriteLine("<----- WindowsAppRuntimeInstall Output end");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
|
|||||||
Reference in New Issue
Block a user