2015-09-17 17:52:11 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
|
|
|
|
<Metadata>
|
2016-02-26 10:46:11 +02:00
|
|
|
<Identity Language="en-US" Id="<%- id %>" Version="<%- version %>" Publisher="<%- publisher %>"/>
|
2016-02-26 10:11:16 +02:00
|
|
|
<DisplayName><%- displayName %></DisplayName>
|
|
|
|
<Description xml:space="preserve"><%- description %></Description>
|
|
|
|
<Tags><%- tags %></Tags>
|
|
|
|
<Categories><%- categories %></Categories>
|
2016-03-18 11:41:42 +00:00
|
|
|
<GalleryFlags><%- flags %></GalleryFlags>
|
2016-07-19 16:21:10 +02:00
|
|
|
<Badges><% _.forEach(badges, function (badge) { %><Badge Link="<%- badge.href %>" ImgUri="<%- badge.url %>" Description="<%- badge.description %>" /><% }); %></Badges>
|
2015-10-14 11:34:11 +02:00
|
|
|
<Properties>
|
2016-09-13 11:19:29 +02:00
|
|
|
<Property Id="Microsoft.VisualStudio.Code.Engine" Value="<%- engine %>" />
|
2016-09-14 16:15:15 +02:00
|
|
|
<Property Id="Microsoft.VisualStudio.Code.ExtensionDependencies" Value="<%- extensionDependencies %>" />
|
2015-11-03 17:26:35 -08:00
|
|
|
<% if (links.repository) { %>
|
2016-02-26 10:46:11 +02:00
|
|
|
<Property Id="Microsoft.VisualStudio.Services.Links.Source" Value="<%- links.repository %>" />
|
|
|
|
<Property Id="Microsoft.VisualStudio.Services.Links.Getstarted" Value="<%- links.repository %>" />
|
2016-07-19 15:52:25 +02:00
|
|
|
<% if (links.github) { %>
|
2016-09-14 16:15:15 +02:00
|
|
|
<Property Id="Microsoft.VisualStudio.Services.Links.GitHub" Value="<%- links.github %>" />
|
2016-07-19 15:52:25 +02:00
|
|
|
<% } else { %>
|
2016-09-14 16:15:15 +02:00
|
|
|
<Property Id="Microsoft.VisualStudio.Services.Links.Repository" Value="<%- links.repository %>" />
|
2016-07-19 15:52:25 +02:00
|
|
|
<% } %>
|
2015-11-03 17:26:35 -08:00
|
|
|
<% } %>
|
2016-02-26 10:46:11 +02:00
|
|
|
<% if (links.bugs) { %><Property Id="Microsoft.VisualStudio.Services.Links.Support" Value="<%- links.bugs %>" /><% } %>
|
|
|
|
<% if (links.homepage) { %><Property Id="Microsoft.VisualStudio.Services.Links.Learn" Value="<%- links.homepage %>" /><% } %>
|
|
|
|
<% if (galleryBanner.color) { %><Property Id="Microsoft.VisualStudio.Services.Branding.Color" Value="<%- galleryBanner.color %>" /><% } %>
|
|
|
|
<% if (galleryBanner.theme) { %><Property Id="Microsoft.VisualStudio.Services.Branding.Theme" Value="<%- galleryBanner.theme %>" /><% } %>
|
2016-09-13 11:33:41 +02:00
|
|
|
<Property Id="Microsoft.VisualStudio.Services.GitHubFlavoredMarkdown" Value="<%- githubMarkdown %>" />
|
2017-05-08 15:48:57 +02:00
|
|
|
<Property Id="Microsoft.VisualStudio.Services.EnableMarketplaceQnA" Value="<%- enableMarketplaceQnA %>" />
|
|
|
|
<% if (customerQnALink) { %><Property Id="Microsoft.VisualStudio.Services.CustomerQnALink" Value="<%- customerQnALink %>" /><% } %>
|
2015-10-14 11:34:11 +02:00
|
|
|
</Properties>
|
2016-02-26 10:11:16 +02:00
|
|
|
<% if (license) { %><License><%- license %></License><% } %>
|
|
|
|
<% if (icon) { %><Icon><%- icon %></Icon><% } %>
|
2015-09-17 17:52:11 +02:00
|
|
|
</Metadata>
|
|
|
|
<Installation>
|
|
|
|
<InstallationTarget Id="Microsoft.VisualStudio.Code"/>
|
|
|
|
</Installation>
|
|
|
|
<Dependencies/>
|
|
|
|
<Assets>
|
2015-10-14 11:55:44 +02:00
|
|
|
<Asset Type="Microsoft.VisualStudio.Code.Manifest" Path="extension/package.json" Addressable="true" />
|
2016-02-26 10:46:11 +02:00
|
|
|
<% _.forEach(assets, function (asset) { %><Asset Type="<%- asset.type %>" Path="<%- asset.path %>" Addressable="true" /><% }); %>
|
2015-09-17 17:52:11 +02:00
|
|
|
</Assets>
|
2015-10-09 20:00:17 +02:00
|
|
|
</PackageManifest>
|