Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: templates/edge/AppxManifest.xml.tmpl

Issue 29540555: Issue 5649 - Include full version number in AppxManifest.xml (Closed)
Patch Set: Re-add blank lines Created Sept. 11, 2017, 3:21 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « packagerEdge.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <Package 3 <Package
4 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" 4 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
5 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" 5 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
6 xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" 6 xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
7 IgnorableNamespaces="uap3"> 7 IgnorableNamespaces="uap3">
8 8
9 <Identity 9 <Identity
10 Name="{{app_id}}" 10 Name="{{app_id}}"
11 Publisher="{{publisher_id}}" 11 Publisher="{{metadata.get('general', 'publisher_id')}}"
12 Version="{{version}}" /> 12 Version="{{version}}" />
13 13
14 <Properties> 14 <Properties>
15 <DisplayName>{{display_name}}</DisplayName> 15 <DisplayName>{{display_name}}</DisplayName>
16 <PublisherDisplayName>{{author}}</PublisherDisplayName> 16 <PublisherDisplayName>{{metadata.get('general', 'author')}}</PublisherDispla yName>
17 <Logo>{{logo_50}}</Logo> 17 <Logo>{{logo_50}}</Logo>
18 </Properties> 18 </Properties>
19 19
20 <Dependencies> 20 <Dependencies>
21 <TargetDeviceFamily 21 <TargetDeviceFamily
22 Name="Windows.Desktop" 22 Name="Windows.Desktop"
23 MinVersion="{{windows_version.min}}" 23 MinVersion="{{windows_version.min}}"
24 MaxVersionTested="{{windows_version.max}}" /> 24 MaxVersionTested="{{windows_version.max}}" />
25 </Dependencies> 25 </Dependencies>
26 26
27 <Resources> 27 <Resources>
28 <Resource Language="en-us"/> 28 <Resource Language="en-us"/>
29 </Resources> 29 </Resources>
30 30
31 <Applications> 31 <Applications>
32 <Application Id="App"> 32 <Application Id="App">
33 <uap:VisualElements 33 <uap:VisualElements
34 AppListEntry="none" 34 AppListEntry="none"
35 DisplayName="{{display_name}}" 35 DisplayName="{{display_name}}"
36 Square150x150Logo="{{logo_150}}" 36 Square150x150Logo="{{logo_150}}"
37 Square44x44Logo="{{logo_44}}" 37 Square44x44Logo="{{logo_44}}"
38 Description="{{description}}" 38 Description="{{description}}"
39 BackgroundColor="{{background_color}}"> 39 BackgroundColor="{{metadata.get('general', 'background_color')}}">
40 </uap:VisualElements> 40 </uap:VisualElements>
41 <Extensions> 41 <Extensions>
42 <uap3:Extension Category="windows.appExtension"> 42 <uap3:Extension Category="windows.appExtension">
43 <uap3:AppExtension Name="com.microsoft.edge.extension" 43 <uap3:AppExtension Name="com.microsoft.edge.extension"
44 Id="{{app_extension_id}}" 44 Id="{{app_extension_id}}"
45 PublicFolder="Extension" 45 PublicFolder="Extension"
46 DisplayName="{{display_name}}"> 46 DisplayName="{{display_name}}">
47 <uap3:Properties> 47 <uap3:Properties>
48 <Capabilities> 48 <Capabilities>
49 <Capability Name="websiteContent"/> 49 <Capability Name="websiteContent"/>
50 <Capability Name="browserStorage"/> 50 <Capability Name="browserStorage"/>
51 <Capability Name="websiteInfo"/> 51 <Capability Name="websiteInfo"/>
52 <Capability Name="browserWebRequest"/> 52 <Capability Name="browserWebRequest"/>
53 </Capabilities> 53 </Capabilities>
54 </uap3:Properties> 54 </uap3:Properties>
55 </uap3:AppExtension> 55 </uap3:AppExtension>
56 </uap3:Extension> 56 </uap3:Extension>
57 </Extensions> 57 </Extensions>
58 </Application> 58 </Application>
59 </Applications> 59 </Applications>
60 60
61 </Package> 61 </Package>
OLDNEW
« no previous file with comments | « packagerEdge.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld