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

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

Issue 29825555: Issue 6291 - add ManifoldJS packaging for Edge (Closed) Base URL: https://hg.adblockplus.org/buildtools/file/9a56d76cd951
Patch Set: Final patch set Created Aug. 9, 2018, 7:08 a.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/edge/AppxBlockMap.xml.tmpl ('k') | templates/edge/[Content_Types].xml.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: templates/edge/AppxManifest.xml.tmpl
diff --git a/templates/edge/AppxManifest.xml.tmpl b/templates/edge/AppxManifest.xml.tmpl
deleted file mode 100644
index db0f9931fe65af58ee0ef3d8a68a6e797f3d7966..0000000000000000000000000000000000000000
--- a/templates/edge/AppxManifest.xml.tmpl
+++ /dev/null
@@ -1,61 +0,0 @@
-<?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="{{app_id}}"
- Publisher="{{metadata.get('general', 'publisher_id')}}"
- Version="{{version}}" />
-
- <Properties>
- <DisplayName>{{display_name}}</DisplayName>
- <PublisherDisplayName>{{metadata.get('general', 'author')}}</PublisherDisplayName>
- <Logo>{{logo_50}}</Logo>
- </Properties>
-
- <Dependencies>
- <TargetDeviceFamily
- Name="Windows.Desktop"
- MinVersion="{{windows_version.min}}"
- MaxVersionTested="{{windows_version.max}}" />
- </Dependencies>
-
- <Resources>
- <Resource Language="en-us"/>
- </Resources>
-
- <Applications>
- <Application Id="App">
- <uap:VisualElements
- AppListEntry="none"
- DisplayName="{{display_name}}"
- Square150x150Logo="{{logo_150}}"
- Square44x44Logo="{{logo_44}}"
- Description="{{description}}"
- BackgroundColor="{{metadata.get('general', 'background_color')}}">
- </uap:VisualElements>
- <Extensions>
- <uap3:Extension Category="windows.appExtension">
- <uap3:AppExtension Name="com.microsoft.edge.extension"
- Id="{{app_extension_id}}"
- PublicFolder="Extension"
- DisplayName="{{display_name}}">
- <uap3:Properties>
- <Capabilities>
- <Capability Name="websiteContent"/>
- <Capability Name="browserStorage"/>
- <Capability Name="websiteInfo"/>
- <Capability Name="browserWebRequest"/>
- </Capabilities>
- </uap3:Properties>
- </uap3:AppExtension>
- </uap3:Extension>
- </Extensions>
- </Application>
- </Applications>
-
-</Package>
« no previous file with comments | « templates/edge/AppxBlockMap.xml.tmpl ('k') | templates/edge/[Content_Types].xml.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld