Skip to content

Commit ad9cfbb

Browse files
Make quotes consistent
1 parent 941ae9a commit ad9cfbb

File tree

1 file changed

+7
-7
lines changed
  • templates/package-builder/src/build

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ function buildDotNetNewNuGetPackage() {
134134

135135
fs.writeFileSync(path.join(templateConfigDir, 'template.json'), JSON.stringify({
136136
author: 'Microsoft',
137-
classifications: ["Web", "MVC", "SPA"],
137+
classifications: ['Web', 'MVC', 'SPA'],
138138
groupIdentity: `Microsoft.AspNetCore.SpaTemplates.${templateConfig.dotNetNewId}`,
139139
identity: `Microsoft.AspNetCore.SpaTemplates.${templateConfig.dotNetNewId}.CSharp`,
140140
name: `MVC ASP.NET Core with ${templateConfig.displayName}`,
@@ -154,16 +154,16 @@ function buildDotNetNewNuGetPackage() {
154154
replaces: 'sdkVersionInjectedHere'
155155
},
156156
Framework: {
157-
type: "parameter",
158-
description: "The target framework for the project.",
159-
datatype: "choice",
157+
type: 'parameter',
158+
description: 'The target framework for the project.',
159+
datatype: 'choice',
160160
choices: [
161161
{
162-
choice: "netcoreapp1.1",
163-
description: "Target netcoreapp1.1"
162+
choice: 'netcoreapp1.1',
163+
description: 'Target netcoreapp1.1'
164164
}
165165
],
166-
defaultValue: "netcoreapp1.1"
166+
defaultValue: 'netcoreapp1.1'
167167
}
168168
},
169169
tags: { language: 'C#', type: 'project' },

0 commit comments

Comments
 (0)