forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StoreArtifactParser.cs
44 lines (34 loc) · 1.29 KB
/
StoreArtifactParser.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using NuGet.Packaging.Core;
using NuGet.Versioning;
namespace Microsoft.NET.Build.Tasks
{
/// <summary>
/// Parses the output artifact.xml generated by ComposeStore
/// </summary>
internal class StoreArtifactParser
{
internal static HashSet<PackageIdentity> Parse(string filterFile)
{
var listofPackages = new HashSet<PackageIdentity>();
var doc = XDocument.Load(filterFile);
var rootName = doc.Root.Name;
if (!rootName.LocalName.Equals("StoreArtifacts"))
{
throw new BuildErrorException(Strings.IncorrectTargetFormat, filterFile);
}
var ns = rootName.Namespace;
foreach (var pkginfo in doc.Root.Elements(ns + "Package"))
{
var pkgname = pkginfo.Attribute("Id");
var version = pkginfo.Attribute("Version");
if (pkgname != null && version != null)
{
listofPackages.Add(new PackageIdentity(pkgname.Value, NuGetVersion.Parse(version.Value)));
}
}
return listofPackages;
}
}
}