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

Unified Diff: templates/edge/AppxBlockMap.xml.tmpl

Issue 29345751: Issue 4028 - Add support for Edge extensions to buildtools (Closed)
Patch Set: Address Windows Store issues with blockmap and devbuild display name Created Oct. 14, 2016, 12:07 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 | « templates/chromeInfo.js.tmpl ('k') | templates/edge/AppxManifest.xml.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: templates/edge/AppxBlockMap.xml.tmpl
===================================================================
new file mode 100644
--- /dev/null
+++ b/templates/edge/AppxBlockMap.xml.tmpl
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<BlockMap xmlns="http://schemas.microsoft.com/appx/2010/blockmap" HashMethod="http://www.w3.org/2001/04/xmlenc#sha256">
+ {% for file in files -%}
+ <File Name="{{file.name}}" Size="{{file.size}}" LfhSize="{{file.lfh_size}}">
+ {% for block in file.blocks -%}
+ <Block Hash="{{block.hash}}"/>
+ {% endfor -%}
+ </File>
+ {% endfor -%}
+</BlockMap>
« no previous file with comments | « templates/chromeInfo.js.tmpl ('k') | templates/edge/AppxManifest.xml.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld