From e1c90b3601282b01c9e2514681d286c91c536bc3 Mon Sep 17 00:00:00 2001 From: Steve Sanderson Date: Tue, 23 May 2017 11:20:04 +0100 Subject: [PATCH] Change "dotnet new" config choices to reference netcoreapp2.0 (not that it makes a difference when it's the only choice) --- templates/package-builder/src/build/build.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/package-builder/src/build/build.ts b/templates/package-builder/src/build/build.ts index d1858b6..62f8cc0 100644 --- a/templates/package-builder/src/build/build.ts +++ b/templates/package-builder/src/build/build.ts @@ -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',