15 lines
480 B
C#
15 lines
480 B
C#
|
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));
|
|||
|
}
|
|||
|
}
|