Update tool tests to target netcoreapp2.1

This commit is contained in:
Daniel Plaisted 2017-08-18 18:07:14 -07:00
parent dc4046ca7e
commit 60e5fabde2
6 changed files with 27 additions and 10 deletions

View file

@ -0,0 +1,14 @@
using NuGet.Frameworks;
using System;
using System.Collections.Generic;
using System.Text;
namespace Microsoft.DotNet.Tools.Tests.Utilities
{
// This class is for frameworks that aren't yet in NuGet's FrameworkConstants.CommonFrameworks class
public static class NuGetFrameworks
{
public static readonly NuGetFramework NetCoreApp21
= new NuGetFramework(FrameworkConstants.FrameworkIdentifiers.NetCoreApp, new Version(2, 1, 0, 0));
}
}