using System; using System.Collections.Generic; using System.Diagnostics; namespace BuildGraph { [DebuggerDisplay("{Name}")] public class Project { public Project(string name) { Name = name; } public string Name { get; } public string Path { get; set; } public Repository Repository { get; set; } public ISet PackageReferences { get; } = new HashSet(StringComparer.OrdinalIgnoreCase); } }