fix IOE on WAS version check

This commit is contained in:
DismissedLight
2024-01-18 23:10:03 +08:00
parent 0571c386e9
commit ae96cdf793

View File

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