Make quotes consistent

This commit is contained in:
Steve Sanderson
2017-05-23 10:08:41 +01:00
parent 941ae9a34d
commit ad9cfbb176

View File

@@ -134,7 +134,7 @@ function buildDotNetNewNuGetPackage() {
fs.writeFileSync(path.join(templateConfigDir, 'template.json'), JSON.stringify({ fs.writeFileSync(path.join(templateConfigDir, 'template.json'), JSON.stringify({
author: 'Microsoft', author: 'Microsoft',
classifications: ["Web", "MVC", "SPA"], classifications: ['Web', 'MVC', 'SPA'],
groupIdentity: `Microsoft.AspNetCore.SpaTemplates.${templateConfig.dotNetNewId}`, groupIdentity: `Microsoft.AspNetCore.SpaTemplates.${templateConfig.dotNetNewId}`,
identity: `Microsoft.AspNetCore.SpaTemplates.${templateConfig.dotNetNewId}.CSharp`, identity: `Microsoft.AspNetCore.SpaTemplates.${templateConfig.dotNetNewId}.CSharp`,
name: `MVC ASP.NET Core with ${templateConfig.displayName}`, name: `MVC ASP.NET Core with ${templateConfig.displayName}`,
@@ -154,16 +154,16 @@ function buildDotNetNewNuGetPackage() {
replaces: 'sdkVersionInjectedHere' replaces: 'sdkVersionInjectedHere'
}, },
Framework: { Framework: {
type: "parameter", type: 'parameter',
description: "The target framework for the project.", description: 'The target framework for the project.',
datatype: "choice", datatype: 'choice',
choices: [ choices: [
{ {
choice: "netcoreapp1.1", choice: 'netcoreapp1.1',
description: "Target netcoreapp1.1" description: 'Target netcoreapp1.1'
} }
], ],
defaultValue: "netcoreapp1.1" defaultValue: 'netcoreapp1.1'
} }
}, },
tags: { language: 'C#', type: 'project' }, tags: { language: 'C#', type: 'project' },