diff options
author | tunip3 <26260613+tunip3@users.noreply.github.com> | 2021-02-12 19:24:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-12 19:24:16 +0000 |
commit | bb26fab39665d31ed6b6b59658b5f59fe6d446bf (patch) | |
tree | 2c06ffbd8bca10b01b78edce213fd7dcba324890 /project | |
parent | 02eff4483904148b209189ffa0d97d4e0425f3b9 (diff) |
add expanded resources rescap
Diffstat (limited to 'project')
-rw-r--r-- | project/Win32BuildSetup/AppxManifest.xml.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/project/Win32BuildSetup/AppxManifest.xml.in b/project/Win32BuildSetup/AppxManifest.xml.in index e8d0959ab0..ac4cf6925c 100644 --- a/project/Win32BuildSetup/AppxManifest.xml.in +++ b/project/Win32BuildSetup/AppxManifest.xml.in @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<Package IgnorableNamespaces="uap" xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"> +<Package IgnorableNamespaces="uap rescap" xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"> <Identity Name="@PACKAGE_IDENTITY@" ProcessorArchitecture="@TARGET_ARCHITECTURE@" Publisher="CN=@PACKAGE_PUBLISHER@" Version="@VERSION_CODE@.0" /> <Properties> <DisplayName>@APP_NAME@</DisplayName> @@ -169,5 +169,6 @@ <uap:Capability Name="videosLibrary" /> <uap:Capability Name="removableStorage" /> <uap:Capability Name="picturesLibrary" /> + <rescap:Capability Name="expandedResources" /> </Capabilities> </Package> |