namespace MsbuildAnalyzer.Models;
///
/// Metadata about a target.
///
public record TargetMetadata
{
///
/// Human-readable description of what the target does.
///
public string? Description { get; init; }
///
/// Technologies used by this target.
///
public List? Technologies { get; init; }
}