18 lines
402 B
C#
18 lines
402 B
C#
namespace MsbuildAnalyzer.Models;
|
|
|
|
/// <summary>
|
|
/// Metadata about a target.
|
|
/// </summary>
|
|
public record TargetMetadata
|
|
{
|
|
/// <summary>
|
|
/// Human-readable description of what the target does.
|
|
/// </summary>
|
|
public string? Description { get; init; }
|
|
|
|
/// <summary>
|
|
/// Technologies used by this target.
|
|
/// </summary>
|
|
public List<string>? Technologies { get; init; }
|
|
}
|