3b848c0487
Don't use Environment.Exit() PR Feedback, Unecessary Usings and Immutable types
10 lines
229 B
C#
10 lines
229 B
C#
using System.Collections.Generic;
|
|
using Microsoft.DotNet.ProjectModel;
|
|
|
|
namespace MultiProjectValidator
|
|
{
|
|
public interface IAnalysisRule
|
|
{
|
|
AnalysisResult Evaluate(List<ProjectContext> projectContexts);
|
|
}
|
|
}
|