-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAppxManifest.xml
More file actions
52 lines (46 loc) · 2.04 KB
/
Copy pathAppxManifest.xml
File metadata and controls
52 lines (46 loc) · 2.04 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="utf-8"?>
<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"
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
IgnorableNamespaces="uap rescap desktop uap10">
<Identity
Name="SwiftWinUI3Gallery"
Version="1.0.0.0"
Publisher="CN=TestPublisher"
ProcessorArchitecture="x64" />
<Properties>
<DisplayName>Swift WinUI 3 Gallery</DisplayName>
<PublisherDisplayName>Test Publisher</PublisherDisplayName>
<Logo>Swift-WinUI-Gallery_SwiftWinUIGallery.resources\Assets\Tiles\GalleryIcon.png</Logo>
</Properties>
<Resources>
<Resource Language="en-us" />
</Resources>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.22621.0" />
<PackageDependency Name="Microsoft.WindowsAppRuntime.1.8" MinVersion="1008.524.2433.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
</Dependencies>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
</Capabilities>
<Applications>
<Application
Id="App"
Executable="SwiftWinUIGallery.exe"
EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements
DisplayName="Swift WinUI 3 Gallery"
Description="WinUI 3 Gallery Demo - Built with Swift"
BackgroundColor="transparent"
Square150x150Logo="Swift-WinUI-Gallery_SwiftWinUIGallery.resources\Assets\Tiles\GalleryIcon.png"
Square44x44Logo="Swift-WinUI-Gallery_SwiftWinUIGallery.resources\Assets\Tiles\GalleryIcon.png">
</uap:VisualElements>
<Extensions>
<desktop:Extension Category="windows.fullTrustProcess" Executable="SwiftWinUIGallery.exe" />
</Extensions>
</Application>
</Applications>
</Package>