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

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

Issue 29345751: Issue 4028 - Add support for Edge extensions to buildtools (Closed)
Patch Set: Address review comments on patch set 2 Created July 1, 2016, 7:47 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
Index: templates/edge/AppxManifest.xml.tmpl
===================================================================
new file mode 100644
--- /dev/null
+++ b/templates/edge/AppxManifest.xml.tmpl
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<Package
+ xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
+ xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
+ xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
+ IgnorableNamespaces="uap3">
+
+ <Identity
+ Name="{{package_identity.name}}"
+ Publisher="{{package_identity.publisher}}"
+ Version="{{version}}" />
+
+ <Properties>
+ <DisplayName>{{display_name}}</DisplayName>
+ <PublisherDisplayName>{{author}}</PublisherDisplayName>
+ <Logo>{{logo_50}}</Logo>
+ </Properties>
+
+ <Dependencies>
+ <TargetDeviceFamily
+ Name="Windows.Desktop"
+ MinVersion="10.0.14332.0"
Sebastian Noack 2016/07/05 14:30:39 The min and max version should be configured in th
Vasily Kuznetsov 2016/07/07 16:23:51 Done.
+ MaxVersionTested="12.0.0.0" />
+ </Dependencies>
+
+ <Resources>
+ <Resource Language="en-us"/>
Sebastian Noack 2016/07/05 14:30:39 We should localize the manifeat, using the respect
+ </Resources>
+
+ <Applications>
+ <Application Id="App">
+ <uap:VisualElements
+ AppListEntry="none"
+ DisplayName="{{display_name}}"
+ Square150x150Logo="{{logo_150}}"
+ Square44x44Logo="{{logo_44}}"
+ Description="{{description}}"
+ BackgroundColor="{{background_color}}">
+ </uap:VisualElements>
+ <Extensions>
+ <uap3:Extension Category="windows.appExtension">
+ <uap3:AppExtension Name="com.microsoft.edge.extension"
+ Id="{{extension_id}}"
+ PublicFolder="Extension"
+ DisplayName="{{display_name}}">
+ </uap3:AppExtension>
+ </uap3:Extension>
+ </Extensions>
+ </Application>
+ </Applications>
+
+</Package>

Powered by Google App Engine
This is Rietveld