Added missing Framework symbol

This commit is contained in:
Mads Kristensen
2017-05-17 10:17:15 -07:00
committed by Steve Sanderson
parent 33b275a7d3
commit 178a05cc33

View File

@@ -152,6 +152,18 @@ function buildDotNetNewNuGetPackage() {
type: 'bind',
binding: 'dotnet-cli-version',
replaces: 'sdkVersionInjectedHere'
},
Framework: {
type: "parameter",
description: "The target framework for the project.",
datatype: "choice",
choices: [
{
choice: "netcoreapp1.1",
description: "Target netcoreapp1.1"
}
],
defaultValue: "netcoreapp1.1"
}
},
tags: { language: 'C#', type: 'project' },