d8b04851e6
Ignore desktop frameworks (if specified)
10 lines
236 B
C#
10 lines
236 B
C#
using System.Collections.Generic;
|
|
using Microsoft.DotNet.ProjectModel;
|
|
|
|
namespace MultiProjectValidator
|
|
{
|
|
public interface IAnalysisRule
|
|
{
|
|
AnalysisResult Evaluate(IEnumerable<ProjectContext> projectContexts);
|
|
}
|
|
}
|