-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppxManifest.xml
More file actions
59 lines (51 loc) · 2.42 KB
/
AppxManifest.xml
File metadata and controls
59 lines (51 loc) · 2.42 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
53
54
55
56
57
58
59
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
xmlns:systemai="http://schemas.microsoft.com/appx/manifest/systemai/windows10"
IgnorableNamespaces="uap rescap mp systemai">
<Identity
Name="32827MikeFara.WindowsForumDiagnostics"
Publisher="CN=ABDB6B3F-DF9E-447D-BC0E-4DA7BAFD14C4"
Version="2.2.0.0"
ProcessorArchitecture="x64" />
<mp:PhoneIdentity PhoneProductId="32827e7c-77d2-43e5-ab82-9cdb9daa11b3" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties>
<DisplayName>WindowsForum Diagnostics</DisplayName>
<PublisherDisplayName>Mike Fara</PublisherDisplayName>
<Logo>Logo.png</Logo>
</Properties>
<Dependencies>
<!-- Both Universal and Desktop required for WinRT AI APIs (Phi Silica) -->
<TargetDeviceFamily Name="Windows.Universal" MinVersion="2.2.0.0" MaxVersionTested="10.0.26226.0" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="2.2.0.0" MaxVersionTested="10.0.26226.0" />
<!-- Windows App SDK 2.0 experimental3 for Phi Silica AI APIs -->
<PackageDependency Name="Microsoft.WindowsAppRuntime.2.0-experimental3"
MinVersion="2.2.0.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="wfdiag-tauri.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements
DisplayName="WindowsForum Diagnostics"
Description="Professional Windows System Diagnostic Tool"
BackgroundColor="transparent"
Square150x150Logo="Square150x150Logo.png"
Square44x44Logo="Square44x44Logo.png">
<uap:DefaultTile Wide310x150Logo="Wide310x150Logo.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
<Capability Name="internetClientServer" />
<Capability Name="privateNetworkClientServer" />
<rescap:Capability Name="runFullTrust" />
<systemai:Capability Name="systemAIModels"/>
</Capabilities>
</Package>