Files
2026-07-13 12:38:36 +08:00

13 lines
372 B
C#

namespace MsbuildAnalyzer.Models;
/// <summary>
/// Simplified nx.json configuration containing only the fields we need.
/// </summary>
public class NxJsonConfig
{
/// <summary>
/// Named input sets defined in nx.json. Keys are the input names (e.g., "production", "default").
/// </summary>
public Dictionary<string, object>? NamedInputs { get; set; }
}