15 lines
533 B
C#
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;
|
|
}
|
|
} |