vscode-vsce/resources/extension.vsixmanifest

24 lines
1.2 KiB
Text
Raw Normal View History

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>
<Identity Language="en-US" Id="${ id }" Version="${ version }" Publisher="${ publisher }"/>
<DisplayName>${ displayName }</DisplayName>
<Description xml:space="preserve">${ description }</Description>
<Tags>${ tags }</Tags>
<GalleryFlags>Public</GalleryFlags>
2015-10-14 11:34:11 +02:00
<Properties>
<% if (links.homepage) { %><Property Id="Microsoft.VisualStudio.Services.Links.Source" Value="${ links.homepage }" /><% } %>
</Properties>
2015-10-14 12:47:36 +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" />
<% _.forEach(assets, function (asset) { %><Asset Type="${ asset.type }" Path="${ asset.path }" Addressable="true" /><% }); %>
2015-09-17 17:52:11 +02:00
</Assets>
</PackageManifest>