-
Notifications
You must be signed in to change notification settings - Fork 318
Expand file tree
/
Copy pathAppxManifest.xml
More file actions
31 lines (31 loc) · 1.57 KB
/
AppxManifest.xml
File metadata and controls
31 lines (31 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft Corporation. Licensed under the MIT License -->
<Package
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"
IgnorableNamespaces="uap rescap">
<Identity Name="CMake-PackagedFrameworkDependent" Publisher="CN=TestPublisher" Version="1.0.0.0" ProcessorArchitecture="x64" />
<Properties>
<DisplayName>PackagedFrameworkDependent (CMake)</DisplayName>
<PublisherDisplayName>Microsoft</PublisherDisplayName>
<Logo>Logo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.26100.0" />
<PackageDependency Name="Microsoft.WindowsAppRuntime.2.0-preview1" MinVersion="0.772.1552.0"
Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
</Dependencies>
<Resources>
<Resource Language="en-US" />
</Resources>
<Applications>
<Application Id="App" Executable="PackagedFrameworkDependent.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements DisplayName="PackagedFrameworkDependent (CMake)" Description="Packaged framework-dependent CMake test"
BackgroundColor="transparent" Square150x150Logo="Logo.png" Square44x44Logo="Logo.png" />
</Application>
</Applications>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
</Capabilities>
</Package>