2015-12-15 18:09:08 -08:00
|
|
|
|
using System.Collections.Generic;
|
2015-12-10 19:01:40 -08:00
|
|
|
|
using Microsoft.DotNet.ProjectModel;
|
|
|
|
|
|
|
|
|
|
namespace MultiProjectValidator
|
|
|
|
|
{
|
|
|
|
|
public interface IAnalysisRule
|
|
|
|
|
{
|
2016-01-07 17:10:45 -08:00
|
|
|
|
AnalysisResult Evaluate(IEnumerable<ProjectContext> projectContexts);
|
2015-12-10 19:01:40 -08:00
|
|
|
|
}
|
|
|
|
|
}
|