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:
parent
b9e62cd4c9
commit
e1c90b3601
|
|
@ -159,11 +159,11 @@ function buildDotNetNewNuGetPackage() {
|
|||
datatype: 'choice',
|
||||
choices: [
|
||||
{
|
||||
choice: 'netcoreapp1.1',
|
||||
description: 'Target netcoreapp1.1'
|
||||
choice: 'netcoreapp2.0',
|
||||
description: 'Target netcoreapp2.0'
|
||||
}
|
||||
],
|
||||
defaultValue: 'netcoreapp1.1'
|
||||
defaultValue: 'netcoreapp2.0'
|
||||
},
|
||||
skipRestore: {
|
||||
type: 'parameter',
|
||||
|
|
|
|||
Loading…
Reference in New Issue