Update tool tests to target netcoreapp2.1
This commit is contained in:
parent
dc4046ca7e
commit
60e5fabde2
6 changed files with 27 additions and 10 deletions
|
@ -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));
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue