Skip to content

Commit e1c90b3

Browse files
Change "dotnet new" config choices to reference netcoreapp2.0 (not that it makes a difference when it's the only choice)
1 parent b9e62cd commit e1c90b3

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,11 @@ function buildDotNetNewNuGetPackage() {
159159
datatype: 'choice',
160160
choices: [
161161
{
162-
choice: 'netcoreapp1.1',
163-
description: 'Target netcoreapp1.1'
162+
choice: 'netcoreapp2.0',
163+
description: 'Target netcoreapp2.0'
164164
}
165165
],
166-
defaultValue: 'netcoreapp1.1'
166+
defaultValue: 'netcoreapp2.0'
167167
},
168168
skipRestore: {
169169
type: 'parameter',

0 commit comments

Comments
 (0)