Populate extension pack property
This commit is contained in:
parent
ad33f295c8
commit
b4b3ffd611
3 changed files with 4 additions and 1 deletions
|
@ -11,6 +11,7 @@
|
||||||
<Properties>
|
<Properties>
|
||||||
<Property Id="Microsoft.VisualStudio.Code.Engine" Value="<%- engine %>" />
|
<Property Id="Microsoft.VisualStudio.Code.Engine" Value="<%- engine %>" />
|
||||||
<Property Id="Microsoft.VisualStudio.Code.ExtensionDependencies" Value="<%- extensionDependencies %>" />
|
<Property Id="Microsoft.VisualStudio.Code.ExtensionDependencies" Value="<%- extensionDependencies %>" />
|
||||||
|
<Property Id="Microsoft.VisualStudio.Code.ExtensionPack" Value="<%- extensionPack %>" />
|
||||||
<% if (links.repository) { %>
|
<% if (links.repository) { %>
|
||||||
<Property Id="Microsoft.VisualStudio.Services.Links.Source" Value="<%- links.repository %>" />
|
<Property Id="Microsoft.VisualStudio.Services.Links.Source" Value="<%- links.repository %>" />
|
||||||
<Property Id="Microsoft.VisualStudio.Services.Links.Getstarted" Value="<%- links.repository %>" />
|
<Property Id="Microsoft.VisualStudio.Services.Links.Getstarted" Value="<%- links.repository %>" />
|
||||||
|
|
|
@ -34,6 +34,7 @@ export interface Manifest {
|
||||||
contributes?: Contributions;
|
contributes?: Contributions;
|
||||||
activationEvents?: string[];
|
activationEvents?: string[];
|
||||||
extensionDependencies?: string[];
|
extensionDependencies?: string[];
|
||||||
|
extensionPack?: string[];
|
||||||
galleryBanner?: { color?: string; theme?: string; };
|
galleryBanner?: { color?: string; theme?: string; };
|
||||||
preview?: boolean;
|
preview?: boolean;
|
||||||
badges?: { url: string; href: string; description: string; }[];
|
badges?: { url: string; href: string; description: string; }[];
|
||||||
|
|
|
@ -206,7 +206,8 @@ class ManifestProcessor extends BaseProcessor {
|
||||||
githubMarkdown: manifest.markdown !== 'standard',
|
githubMarkdown: manifest.markdown !== 'standard',
|
||||||
enableMarketplaceQnA,
|
enableMarketplaceQnA,
|
||||||
customerQnALink,
|
customerQnALink,
|
||||||
extensionDependencies: _(manifest.extensionDependencies || []).uniq().join(',')
|
extensionDependencies: _(manifest.extensionDependencies || []).uniq().join(','),
|
||||||
|
extensionPack: _(manifest.extensionPack || []).uniq().join(',')
|
||||||
};
|
};
|
||||||
|
|
||||||
if (isGitHub) {
|
if (isGitHub) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue