We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2136520 commit b3776efCopy full SHA for b3776ef
src/Files.Uwp/ServicesImplementation/SideloadUpdateService.cs
@@ -69,9 +69,11 @@ public async Task DownloadUpdates()
69
}
70
});
71
72
+ var currentPackageName = Package.Current.Id.Name;
73
+
74
// Have to use ForceTargetAppShutdown flag as the appinstaller won't update while it's being used.
75
deploymentResult = await pm.RequestAddPackageByAppInstallerFileAsync(
- DownloadUri,
76
+ new Uri(_sideloadVersion[currentPackageName]),
77
AddPackageByAppInstallerOptions.ForceTargetAppShutdown,
78
pm.GetDefaultPackageVolume()).AsTask(progress);
79
0 commit comments