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

Delta Between Two Patch Sets: templates/edge/AppxManifest.xml.tmpl

Issue 29345751: Issue 4028 - Add support for Edge extensions to buildtools (Closed)
Left Patch Set: Address comments on patch set 7 Created Oct. 4, 2016, 2:37 p.m.
Right Patch Set: Address Windows Store issues with blockmap and devbuild display name Created Oct. 14, 2016, 12:07 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « templates/edge/AppxBlockMap.xml.tmpl ('k') | templates/edge/[Content_Types].xml.tmpl » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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="{{package_identity.name}}" 10 Name="{{app_id}}"
11 Publisher="{{package_identity.publisher}}" 11 Publisher="{{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>{{author}}</PublisherDisplayName>
17 <Logo>{{logo_50}}</Logo> 17 <Logo>{{logo_50}}</Logo>
18 </Properties> 18 </Properties>
19 19
20 <Dependencies> 20 <Dependencies>
21 <TargetDeviceFamily 21 <TargetDeviceFamily
(...skipping 30 matching lines...) Expand all
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>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld