forked from python/pymanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappxmanifest.xml
More file actions
280 lines (274 loc) · 15.6 KB
/
appxmanifest.xml
File metadata and controls
280 lines (274 loc) · 15.6 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<?xml version="1.0" encoding="utf-8"?>
<Package IgnorableNamespaces="com4 desktop4 desktop6 desktop7 uap13 uap17"
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:com4="http://schemas.microsoft.com/appx/manifest/com/windows10/4"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
xmlns:rescap4="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities/4"
xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
xmlns:desktop6="http://schemas.microsoft.com/appx/manifest/desktop/windows10/6"
xmlns:desktop7="http://schemas.microsoft.com/appx/manifest/desktop/windows10/7"
xmlns:uap4="http://schemas.microsoft.com/appx/manifest/uap/windows10/4"
xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5"
xmlns:uap13="http://schemas.microsoft.com/appx/manifest/uap/windows10/13"
xmlns:uap17="http://schemas.microsoft.com/appx/manifest/uap/windows10/17">
<Identity Name="PythonSoftwareFoundation.PythonManager"
Version="1.0.0.0"
Publisher="CN=00000000-0000-0000-0000-000000000000"
ProcessorArchitecture="x64" />
<Properties>
<DisplayName>Python Install Manager</DisplayName>
<PublisherDisplayName>Python Software Foundation</PublisherDisplayName>
<Description>Installs and launches Python runtimes.</Description>
<Logo>_resources/pythonx50.png</Logo>
<desktop6:RegistryWriteVirtualization>disabled</desktop6:RegistryWriteVirtualization>
<desktop6:FileSystemWriteVirtualization>disabled</desktop6:FileSystemWriteVirtualization>
<uap13:AutoUpdate>
<uap13:AppInstaller File="pymanager.appinstaller" />
</uap13:AutoUpdate>
<uap17:UpdateWhileInUse>defer</uap17:UpdateWhileInUse>
</Properties>
<Resources>
<Resource Language="en-US" />
</Resources>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19044.0" MaxVersionTested="10.0.26100.0" />
</Dependencies>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
<rescap:Capability Name="unvirtualizedResources" />
</Capabilities>
<Applications>
<Application Id="Py.Manager.Exe"
Executable="py-manager.exe"
EntryPoint="Windows.FullTrustApplication"
desktop4:SupportsMultipleInstances="true"
desktop4:Subsystem="console">
<uap:VisualElements DisplayName="Python install manager"
Description="Add, remove, list and launch Python runtimes."
Square150x150Logo="_resources/setupx150.png"
Square44x44Logo="_resources/setupx44.png"
BackgroundColor="transparent" />
</Application>
<Application Id="Pymanager.Exe"
Executable="pymanager.exe"
EntryPoint="Windows.FullTrustApplication"
desktop4:SupportsMultipleInstances="true"
desktop4:Subsystem="console">
<uap:VisualElements DisplayName="Python install manager"
Description="Add, remove, list and launch Python runtimes."
Square150x150Logo="_resources/pythonx150.png"
Square44x44Logo="_resources/pythonx44.png"
BackgroundColor="transparent"
AppListEntry="none" />
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias">
<uap5:AppExecutionAlias desktop4:Subsystem="console">
<uap5:ExecutionAlias Alias="pymanager.exe" />
</uap5:AppExecutionAlias>
</uap5:Extension>
</Extensions>
</Application>
<Application Id="Pywmanager.Exe"
Executable="pywmanager.exe"
EntryPoint="Windows.FullTrustApplication"
desktop4:SupportsMultipleInstances="true"
desktop4:Subsystem="windows">
<uap:VisualElements DisplayName="Python install manager (windowed)"
Description="Add, remove and launch Python without creating a console window."
Square150x150Logo="_resources/pythonwx150.png"
Square44x44Logo="_resources/pythonwx44.png"
BackgroundColor="transparent"
AppListEntry="none" />
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias">
<uap5:AppExecutionAlias desktop4:Subsystem="windows">
<uap5:ExecutionAlias Alias="pywmanager.exe" />
</uap5:AppExecutionAlias>
</uap5:Extension>
</Extensions>
</Application>
<Application Id="Py.Exe"
Executable="py.exe"
EntryPoint="Windows.FullTrustApplication"
desktop4:SupportsMultipleInstances="true"
desktop4:Subsystem="console">
<uap:VisualElements DisplayName="Python install manager"
Description="Add, remove, list and launch Python runtimes."
Square150x150Logo="_resources/pythonx150.png"
Square44x44Logo="_resources/pythonx44.png"
BackgroundColor="transparent"
AppListEntry="none" />
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias">
<uap5:AppExecutionAlias desktop4:Subsystem="console">
<uap5:ExecutionAlias Alias="py.exe" />
</uap5:AppExecutionAlias>
</uap5:Extension>
</Extensions>
</Application>
<Application Id="Pyw.Exe"
Executable="pyw.exe"
EntryPoint="Windows.FullTrustApplication"
desktop4:SupportsMultipleInstances="true"
desktop4:Subsystem="windows">
<uap:VisualElements DisplayName="Python install manager (windowed)"
Description="Add, remove and launch Python without creating a console window."
Square150x150Logo="_resources/pythonwx150.png"
Square44x44Logo="_resources/pythonwx44.png"
BackgroundColor="transparent"
AppListEntry="none" />
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias">
<uap5:AppExecutionAlias desktop4:Subsystem="windows">
<uap5:ExecutionAlias Alias="pyw.exe" />
</uap5:AppExecutionAlias>
</uap5:Extension>
</Extensions>
</Application>
<Application Id="Python.Exe"
Executable="python.exe"
EntryPoint="Windows.FullTrustApplication"
desktop4:SupportsMultipleInstances="true"
desktop4:Subsystem="console">
<uap:VisualElements DisplayName="Python (default)"
Description="Launch your default Python runtime"
Square150x150Logo="_resources/pythonx150.png"
Square44x44Logo="_resources/pythonx44.png"
BackgroundColor="transparent"
AppListEntry="none" />
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias">
<uap5:AppExecutionAlias desktop4:Subsystem="console">
<uap5:ExecutionAlias Alias="python.exe" />
</uap5:AppExecutionAlias>
</uap5:Extension>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation Name="py">
<uap:DisplayName>Python Script</uap:DisplayName>
<uap:InfoTip>Python Script</uap:InfoTip>
<uap:Logo>_resources/pyx256.png</uap:Logo>
<desktop7:Logo>_resources/py.ico</desktop7:Logo>
<uap:EditFlags OpenIsSafe="false" />
<uap:SupportedFileTypes>
<uap:FileType ContentType="text/x-python"
uap4:ShellNewFileName="templates\template.py">.py</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileTypeAssociation>
</uap:Extension>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation Name="pyc">
<uap:DisplayName>Compiled Python Script</uap:DisplayName>
<uap:InfoTip>Compiled Python Script</uap:InfoTip>
<desktop7:Logo>_resources/pyc.ico</desktop7:Logo>
<uap:EditFlags OpenIsSafe="false" AlwaysUnsafe="true" />
<uap:SupportedFileTypes>
<uap:FileType ContentType="application/x-python-code">.pyc</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileTypeAssociation>
</uap:Extension>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation Name="pyd">
<uap:DisplayName>Python Extension Module</uap:DisplayName>
<uap:InfoTip>Python Extension Module</uap:InfoTip>
<desktop7:Logo>_resources/pyd.ico</desktop7:Logo>
<uap:EditFlags OpenIsSafe="false" AlwaysUnsafe="true" />
<uap:SupportedFileTypes>
<uap:FileType ContentType="application/x-python-pyd">.pyd</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileTypeAssociation>
</uap:Extension>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation Name="pyz">
<uap:DisplayName>Python Application</uap:DisplayName>
<uap:InfoTip>Python Application</uap:InfoTip>
<uap:Logo>_resources/pythonx150.png</uap:Logo>
<desktop7:Logo>_resources/python.ico</desktop7:Logo>
<uap:EditFlags OpenIsSafe="false" />
<uap:SupportedFileTypes>
<uap:FileType ContentType="application/x-python-zipapp">.pyz</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileTypeAssociation>
</uap:Extension>
<desktop4:Extension Category="windows.fileExplorerContextMenus">
<desktop4:FileExplorerContextMenus>
<desktop4:ItemType Type=".py">
<desktop4:Verb Id="EditInIdle" Clsid="C7E29CB0-9691-4DE8-B72B-6719DDC0B4A1" />
</desktop4:ItemType>
</desktop4:FileExplorerContextMenus>
</desktop4:Extension>
<com4:Extension Category="windows.comServer">
<com4:ComServer>
<com4:ExeServer Executable="pyshellext.exe" DisplayName="Python Shell Extension">
<com4:Class Id="C7E29CB0-9691-4DE8-B72B-6719DDC0B4A1" DisplayName="EditInIdleCommand" />
</com4:ExeServer>
</com4:ComServer>
</com4:Extension>
</Extensions>
</Application>
<Application Id="Python3.Exe"
Executable="python3.exe"
EntryPoint="Windows.FullTrustApplication"
desktop4:SupportsMultipleInstances="true"
desktop4:Subsystem="console">
<uap:VisualElements DisplayName="Python (default)"
Description="Launch your default Python 3 runtime"
Square150x150Logo="_resources/pythonx150.png"
Square44x44Logo="_resources/pythonx44.png"
BackgroundColor="transparent"
AppListEntry="none" />
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias">
<uap5:AppExecutionAlias desktop4:Subsystem="console">
<uap5:ExecutionAlias Alias="python3.exe" />
</uap5:AppExecutionAlias>
</uap5:Extension>
</Extensions>
</Application>
<Application Id="Pythonw.Exe"
Executable="pythonw.exe"
EntryPoint="Windows.FullTrustApplication"
desktop4:SupportsMultipleInstances="true"
desktop4:Subsystem="windows">
<uap:VisualElements DisplayName="Python (default windowed)"
Description="Launch your default Python without creating a console window."
Square150x150Logo="_resources/pythonwx150.png"
Square44x44Logo="_resources/pythonwx44.png"
BackgroundColor="transparent"
AppListEntry="none" />
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias">
<uap5:AppExecutionAlias desktop4:Subsystem="windows">
<uap5:ExecutionAlias Alias="pythonw.exe" />
</uap5:AppExecutionAlias>
</uap5:Extension>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation Name="pyw">
<uap:DisplayName>Python Script (Windowed)</uap:DisplayName>
<uap:InfoTip>Python Script (Windowed)</uap:InfoTip>
<uap:Logo>_resources/pyx256.png</uap:Logo>
<desktop7:Logo>_resources/py.ico</desktop7:Logo>
<uap:EditFlags OpenIsSafe="false" />
<uap:SupportedFileTypes>
<uap:FileType ContentType="text/x-python">.pyw</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileTypeAssociation>
</uap:Extension>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation Name="pyzw">
<uap:DisplayName>Python Application (Windowed)</uap:DisplayName>
<uap:InfoTip>Python Application (Windowed)</uap:InfoTip>
<uap:Logo>_resources/pythonwx150.png</uap:Logo>
<desktop7:Logo>_resources/pythonw.ico</desktop7:Logo>
<uap:EditFlags OpenIsSafe="false" />
<uap:SupportedFileTypes>
<uap:FileType ContentType="application/x-python-zipapp">.pyzw</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileTypeAssociation>
</uap:Extension>
</Extensions>
</Application>
</Applications>
<Extensions>
</Extensions>
</Package>