in src/VstsHtmlGenerator.ts [34:45]
private getInstallOptions(): string {
if (this.packageData.targets === "Microsoft.VisualStudio.Services") {
return `<button class="ux-button install">Install</button><button class="ux-button install">Download</button>`;
}
else if (this.packageData.targets === "Microsoft.VisualStudio.Services.Integration") {
return `<button class="ux-button install">Get Started</button>`;
}
else if (this.packageData.targets === "Microsoft.VisualStudio.Services.Cloud") {
return `<button class="ux-button install">Install</button>`;
}
return ``;
}