From ad9cfbb1764d7e29f6025c66cee6301c4b8c523d Mon Sep 17 00:00:00 2001 From: Steve Sanderson Date: Tue, 23 May 2017 10:08:41 +0100 Subject: [PATCH] Make quotes consistent --- templates/package-builder/src/build/build.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/templates/package-builder/src/build/build.ts b/templates/package-builder/src/build/build.ts index 3299aeb..2830335 100644 --- a/templates/package-builder/src/build/build.ts +++ b/templates/package-builder/src/build/build.ts @@ -134,7 +134,7 @@ function buildDotNetNewNuGetPackage() { fs.writeFileSync(path.join(templateConfigDir, 'template.json'), JSON.stringify({ author: 'Microsoft', - classifications: ["Web", "MVC", "SPA"], + classifications: ['Web', 'MVC', 'SPA'], groupIdentity: `Microsoft.AspNetCore.SpaTemplates.${templateConfig.dotNetNewId}`, identity: `Microsoft.AspNetCore.SpaTemplates.${templateConfig.dotNetNewId}.CSharp`, name: `MVC ASP.NET Core with ${templateConfig.displayName}`, @@ -154,16 +154,16 @@ function buildDotNetNewNuGetPackage() { replaces: 'sdkVersionInjectedHere' }, Framework: { - type: "parameter", - description: "The target framework for the project.", - datatype: "choice", + type: 'parameter', + description: 'The target framework for the project.', + datatype: 'choice', choices: [ { - choice: "netcoreapp1.1", - description: "Target netcoreapp1.1" + choice: 'netcoreapp1.1', + description: 'Target netcoreapp1.1' } ], - defaultValue: "netcoreapp1.1" + defaultValue: 'netcoreapp1.1' } }, tags: { language: 'C#', type: 'project' },