GetArnolyzerSettingsForProject() public method

public GetArnolyzerSettingsForProject ( string filePath ) : SettingsDetails
filePath string
return SettingsDetails
Example #1
0
 public static bool SkipSymbolAnalysisIgnoringAttributes(ISymbol symbol,
                                                         SettingsHandler settingsHandler)
 {
     var settings =
         settingsHandler.GetArnolyzerSettingsForProject(GetFilePathForSymbol(symbol));
     return AutoGenerated(symbol) || IgnoredFile(symbol, settings);
 }