SOMS/SolutionCleanupTool/Models/MissingProject.cs
2025-12-31 14:25:09 +08:00

15 lines
533 B
C#

using System.Collections.Generic;
namespace SolutionCleanupTool.Models
{
/// <summary>
/// Represents a project that is referenced but missing from the file system
/// </summary>
public class MissingProject
{
public ProjectReference Reference { get; set; } = new ProjectReference();
public string ExpectedPath { get; set; } = string.Empty;
public List<string> ReferencingProjects { get; set; } = new List<string>();
public string ErrorMessage { get; set; } = string.Empty;
}
}