// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
using Microsoft.Build.Framework;
namespace Microsoft.NET.Build.Tasks
{
public class CheckForDuplicateItemMetadata : TaskBase
{
[Required]
public ITaskItem[] Items { get; set; }
[Required]
public string MetadataName { get; set; }
[Output]
public ITaskItem[] DuplicateItems { get; set; }
[Output]
public string[] DuplicatedMetadataValues { get; set; }
[Output]
public bool DuplicatesExist { get; set; }
protected override void ExecuteCore()
{
var groupings = Items.GroupBy(item => item.GetMetadata(MetadataName))
.Where(g => g.Count() > 1)
.ToList();
DuplicatesExist = groupings.Any();
DuplicatedMetadataValues = groupings
.Select(g => g.Key)
.ToArray();
DuplicateItems = groupings
.SelectMany(g => g)
.ToArray();
}
}
}
|