Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/resources/win32/appx/AppxManifest.xml
3274 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<Package
3
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
4
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
5
xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2"
6
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
7
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
8
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
9
xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
10
xmlns:desktop5="http://schemas.microsoft.com/appx/manifest/desktop/windows10/5"
11
xmlns:desktop6="http://schemas.microsoft.com/appx/manifest/desktop/windows10/6"
12
xmlns:desktop10="http://schemas.microsoft.com/appx/manifest/desktop/windows10/10"
13
xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
14
xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10"
15
IgnorableNamespaces="uap uap2 uap3 rescap desktop desktop4 desktop5 desktop6 desktop10 uap10 com">
16
<Identity
17
Name="@@AppxPackageName@@"
18
Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
19
Version="@@AppxPackageVersion@@"
20
ProcessorArchitecture="neutral" />
21
<Properties>
22
<DisplayName>@@AppxPackageDisplayName@@</DisplayName>
23
<PublisherDisplayName>Microsoft Corporation</PublisherDisplayName>
24
<Logo>resources\app\resources\win32\code_150x150.png</Logo>
25
<uap10:AllowExternalContent>true</uap10:AllowExternalContent>
26
<desktop6:RegistryWriteVirtualization>disabled</desktop6:RegistryWriteVirtualization>
27
<desktop6:FileSystemWriteVirtualization>disabled</desktop6:FileSystemWriteVirtualization>
28
</Properties>
29
<Resources>
30
<Resource Language="en-us" />
31
<Resource Language="es-es" />
32
<Resource Language="de-de" />
33
<Resource Language="fr-fr" />
34
<Resource Language="hu-hu" />
35
<Resource Language="it-it" />
36
<Resource Language="ja-jp" />
37
<Resource Language="ko-kr" />
38
<Resource Language="pt-br" />
39
<Resource Language="ru-ru" />
40
<Resource Language="tr-tr" />
41
<Resource Language="zh-cn" />
42
<Resource Language="zh-tw" />
43
</Resources>
44
<Dependencies>
45
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19041.0" MaxVersionTested="10.0.26100.0" />
46
</Dependencies>
47
<Capabilities>
48
<rescap:Capability Name="runFullTrust" />
49
<rescap:Capability Name="unvirtualizedResources"/>
50
<DeviceCapability Name="microphone"/>
51
</Capabilities>
52
<Applications>
53
<Application Id="@@ApplicationIdShort@@"
54
Executable="@@ApplicationExe@@"
55
uap10:TrustLevel="mediumIL"
56
uap10:RuntimeBehavior="win32App">
57
<uap:VisualElements
58
AppListEntry="none"
59
DisplayName="@@AppxPackageDisplayName@@"
60
Description="@@AppxPackageDescription@@"
61
BackgroundColor="transparent"
62
Square150x150Logo="resources\app\resources\win32\code_150x150.png"
63
Square44x44Logo="resources\app\resources\win32\code_70x70.png">
64
</uap:VisualElements>
65
<Extensions>
66
<desktop4:Extension Category="windows.fileExplorerContextMenus">
67
<desktop4:FileExplorerContextMenus>
68
<desktop5:ItemType Type="Directory">
69
<desktop5:Verb Id="@@FileExplorerContextMenuID@@" Clsid="@@FileExplorerContextMenuCLSID@@" />
70
</desktop5:ItemType>
71
<desktop5:ItemType Type="Directory\Background">
72
<desktop5:Verb Id="@@FileExplorerContextMenuID@@" Clsid="@@FileExplorerContextMenuCLSID@@" />
73
</desktop5:ItemType>
74
<desktop5:ItemType Type="*">
75
<desktop5:Verb Id="@@FileExplorerContextMenuID@@" Clsid="@@FileExplorerContextMenuCLSID@@" />
76
</desktop5:ItemType>
77
</desktop4:FileExplorerContextMenus>
78
</desktop4:Extension>
79
<com:Extension Category="windows.comServer">
80
<com:ComServer>
81
<com:SurrogateServer DisplayName="@@AppxPackageDisplayName@@">
82
<com:Class Id="@@FileExplorerContextMenuCLSID@@" Path="@@FileExplorerContextMenuDLL@@" ThreadingModel="STA"/>
83
</com:SurrogateServer>
84
</com:ComServer>
85
</com:Extension>
86
</Extensions>
87
</Application>
88
</Applications>
89
</Package>
90
91