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

Unified 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.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packagerEdge.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: templates/edge/AppxManifest.xml.tmpl
===================================================================
--- a/templates/edge/AppxManifest.xml.tmpl
+++ b/templates/edge/AppxManifest.xml.tmpl
@@ -8,12 +8,12 @@
<Identity
Name="{{app_id}}"
- Publisher="{{publisher_id}}"
+ Publisher="{{metadata.get('general', 'publisher_id')}}"
Version="{{version}}" />
<Properties>
<DisplayName>{{display_name}}</DisplayName>
- <PublisherDisplayName>{{author}}</PublisherDisplayName>
+ <PublisherDisplayName>{{metadata.get('general', 'author')}}</PublisherDisplayName>
<Logo>{{logo_50}}</Logo>
</Properties>
@@ -36,7 +36,7 @@
Square150x150Logo="{{logo_150}}"
Square44x44Logo="{{logo_44}}"
Description="{{description}}"
- BackgroundColor="{{background_color}}">
+ BackgroundColor="{{metadata.get('general', 'background_color')}}">
</uap:VisualElements>
<Extensions>
<uap3:Extension Category="windows.appExtension">
« no previous file with comments | « packagerEdge.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld