dotnet-installer/src/dotnet/commands/dotnet-migrate/ProjectRootElementExtensions.cs

18 lines
577 B
C#
Raw Normal View History

using System.Linq;
using Microsoft.Build.Construction;
using Microsoft.DotNet.ProjectJsonMigration;
namespace Microsoft.DotNet.Tools.Migrate
{
public static class ProjectRootElementExtensions
{
public static string GetSdkVersion(this ProjectRootElement projectRootElement)
{
2016-10-03 20:10:09 -07:00
return projectRootElement
.Items
.Where(i => i.ItemType == "PackageReference")
.First(i => i.Include == SupportedPackageVersions.SdkPackageName)
2016-10-03 20:10:09 -07:00
.GetMetadataWithName("version").Value;
}
}
}