2015-12-16 02:09:08 +00:00
|
|
|
|
using System.Collections.Generic;
|
2015-12-11 03:01:40 +00:00
|
|
|
|
using Microsoft.DotNet.ProjectModel;
|
|
|
|
|
|
|
|
|
|
namespace MultiProjectValidator
|
|
|
|
|
{
|
|
|
|
|
public interface IAnalysisRule
|
|
|
|
|
{
|
2016-01-08 01:10:45 +00:00
|
|
|
|
AnalysisResult Evaluate(IEnumerable<ProjectContext> projectContexts);
|
2015-12-11 03:01:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|