We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca9c638 commit 4e847f4Copy full SHA for 4e847f4
templates/package-builder/src/build/build.ts
@@ -163,10 +163,11 @@ function buildDotNetNewNuGetPackage() {
163
164
fs.writeFileSync(path.join(templateConfigDir, 'vs-2017.3.host.json'), JSON.stringify({
165
name: { text: templateConfig.displayName },
166
- description: { text: templateConfig.displayName },
+ description: { text: `Web application built with MVC ASP.NET Core and ${templateConfig.displayName}` },
167
order: 2000,
168
- learnMoreLink: "https://github.com/aspnet/JavaScriptServices",
169
- uiFilters: [ "oneaspnet" ]
+ icon: 'icon.png',
+ learnMoreLink: 'https://github.com/aspnet/JavaScriptServices',
170
+ uiFilters: [ 'oneaspnet' ]
171
}, null, 2));
172
});
173
0 commit comments