dotnet-installer/tools/MultiProjectValidator/IAnalysisRule.cs
Bryan d8b04851e6 MultiProjectValidator Fixes
Ignore desktop frameworks (if specified)
2016-01-11 17:54:33 -08:00

10 lines
236 B
C#

using System.Collections.Generic;
using Microsoft.DotNet.ProjectModel;
namespace MultiProjectValidator
{
public interface IAnalysisRule
{
AnalysisResult Evaluate(IEnumerable<ProjectContext> projectContexts);
}
}