Skip to content

Commit 73d8ffe

Browse files
authored
gh-95733: Allow installing Store package on older Windows versions (GH-95862)
1 parent 97e9cfa commit 73d8ffe

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Make certain requirements of the Windows Store package optional to allow
2+
installing on earlier updates of Windows.

PC/layout/support/appxmanifest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@
8686
}
8787

8888
APPXMANIFEST_TEMPLATE = """<?xml version="1.0" encoding="utf-8"?>
89-
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
89+
<Package IgnorableNamespaces="desktop4 desktop6"
90+
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
9091
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
9192
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
9293
xmlns:rescap4="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities/4"

0 commit comments

Comments
 (0)