Change "dotnet new" config choices to reference netcoreapp2.0 (not that it makes a difference when it's the only choice)

This commit is contained in:
Steve Sanderson
2017-05-23 11:20:04 +01:00
parent b9e62cd4c9
commit e1c90b3601

View File

@@ -159,11 +159,11 @@ function buildDotNetNewNuGetPackage() {
datatype: 'choice', datatype: 'choice',
choices: [ choices: [
{ {
choice: 'netcoreapp1.1', choice: 'netcoreapp2.0',
description: 'Target netcoreapp1.1' description: 'Target netcoreapp2.0'
} }
], ],
defaultValue: 'netcoreapp1.1' defaultValue: 'netcoreapp2.0'
}, },
skipRestore: { skipRestore: {
type: 'parameter', type: 'parameter',