Files
nrwl--nx/packages/dotnet/analyzer/Models/TargetMetadata.cs
T
2026-07-13 12:38:36 +08:00

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; }
}