Skip to content

Commit 4e847f4

Browse files
Reference icon in vs-2017.3.host.json files
1 parent ca9c638 commit 4e847f4

File tree

1 file changed

+4
-3
lines changed
  • templates/package-builder/src/build

1 file changed

+4
-3
lines changed

templates/package-builder/src/build/build.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,11 @@ function buildDotNetNewNuGetPackage() {
163163

164164
fs.writeFileSync(path.join(templateConfigDir, 'vs-2017.3.host.json'), JSON.stringify({
165165
name: { text: templateConfig.displayName },
166-
description: { text: templateConfig.displayName },
166+
description: { text: `Web application built with MVC ASP.NET Core and ${templateConfig.displayName}` },
167167
order: 2000,
168-
learnMoreLink: "https://github.com/aspnet/JavaScriptServices",
169-
uiFilters: [ "oneaspnet" ]
168+
icon: 'icon.png',
169+
learnMoreLink: 'https://github.com/aspnet/JavaScriptServices',
170+
uiFilters: [ 'oneaspnet' ]
170171
}, null, 2));
171172
});
172173

0 commit comments

Comments
 (0)