项目文件夹

文件
2026-07-13 12:38:36 +08:00

18 行
396 B
C#

namespace MsbuildAnalyzer.Models;
/// <summary>
/// Options for executing a target command.
/// </summary>
public record TargetOptions
{
/// <summary>
/// The working directory for the command.
/// </summary>
public string? Cwd { get; init; }
/// <summary>
/// Command-line arguments to pass to the command.
/// </summary>
public string[]? Args { get; init; }
}