5 Commits

Author SHA1 Message Date
DismissedLight
80584305db Update Snap.Hutao.Deployment.Runtime.nuspec 2024-01-16 21:23:02 +08:00
DismissedLight
5a830c21cf code style 2024-01-16 21:09:59 +08:00
qhy040404
ab96c9be33 更新 Snap.Hutao.Deployment.csproj 2024-01-15 23:56:48 +08:00
qhy040404
d6f15608d9 更新 WindowsAppSDKDependency.cs 2024-01-15 23:55:23 +08:00
qhy040404
6867e5e914 更新 Snap.Hutao.Deployment.csproj 2024-01-15 23:42:58 +08:00
5 changed files with 5 additions and 3 deletions

View File

@@ -18,6 +18,9 @@ jobs:
with:
dotnet-version: '8.x'
- name: Build Tool
run: dotnet publish src/Snap.Hutao.Deployment/Snap.Hutao.Deployment.csproj
- name: Pack
run: dotnet pack src/Snap.Hutao.Deployment.Runtime/Snap.Hutao.Deployment.Runtime.csproj

View File

@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Snap.Hutao.Deployment.Runtime</id>
<version>1.14.0</version>
<version>1.12.0</version>
<authors>DGP Studio</authors>
<developmentDependency>true</developmentDependency>
<requireLicenseAcceptance>false</requireLicenseAcceptance>

View File

@@ -24,7 +24,6 @@ internal static partial class Invocation
ArgumentException.ThrowIfNullOrEmpty(path);
Console.WriteLine($"""
Snap Hutao Deployment Tool [1.14.0]
PackagePath: {path}
FamilyName: {name}
------------------------------------------------------------

View File

@@ -81,7 +81,7 @@ internal static partial class WindowsAppSDKDependency
}
}
return results.Count > 0 && results.Aggregate((result, element) => result || element);
return results.Aggregate((result, element) => result || element);
}
private static async Task DownloadWindowsAppRuntimeInstallAndInstallAsync(string version)