This site provides a machine-readable index at /llms.txt.

Skip to main content Skip to navigation

ProjectFilter Pennington.Roslyn

Filter for which projects to analyze.

Properties

ExcludedProjects System.Collections.Generic.HashSet<string>?
Default: null
Project names to exclude from analysis.
IncludedProjects System.Collections.Generic.HashSet<string>?
Default: null
Project names to include; when non-null, only these projects are analyzed.

Pennington.Roslyn.ProjectFilter

namespace Pennington.Roslyn;

/// Filter for which projects to analyze.
public record ProjectFilter
{
    /// Project names to exclude from analysis.
    
public HashSet<string>? ExcludedProjects { get; init; }
/// Project names to include; when non-null, only these projects are analyzed.
public HashSet<string>? IncludedProjects { get; init; }
}