You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the AnalyzerManager with a solution file path, the method has the ability to apply a ProjectFilter by using AnalyzerManagerOptions.
Using the optional parameter will allow for example for an exclusion of certain projects before they are added to the Workspace.
Example:
var managerOptions = new AnalyzerManagerOptions
{
ProjectFilter = x => !x.AbsolutePath.Contains("Tests")
};
var solutionManager = new AnalyzerManager(solutionFilePath, managerOptions);
The text was updated successfully, but these errors were encountered:
When using the AnalyzerManager with a solution file path, the method has the ability to apply a ProjectFilter by using AnalyzerManagerOptions.
Using the optional parameter will allow for example for an exclusion of certain projects before they are added to the Workspace.
Example:
The text was updated successfully, but these errors were encountered: