Update test code to use netcoreapp2.1

This commit is contained in:
Daniel Plaisted 2017-08-18 15:36:01 -07:00
parent c00afe9588
commit dc4046ca7e
14 changed files with 30 additions and 30 deletions

View file

@ -107,7 +107,7 @@ namespace Microsoft.DotNet.Cli.Package.Add.Tests
var packageName = "Newtonsoft.Json";
var packageVersion = "9.0.1";
var framework = "netcoreapp2.0";
var framework = "netcoreapp2.1";
var cmd = new DotnetCommand()
.WithWorkingDirectory(projectDirectory)
.ExecuteWithCapturedOutput($"add package {packageName} --version {packageVersion} --framework {framework}");