1 write to NormalizedDirectory
Microsoft.CodeAnalysis (1)
CommandLine\AnalyzerConfig.cs (1)
171NormalizedDirectory = PathUtilities.NormalizeWithForwardSlash(directory);
6 references to NormalizedDirectory
Microsoft.CodeAnalysis (6)
CommandLine\AnalyzerConfig.cs (3)
104/// Comparer for sorting <see cref="AnalyzerConfig"/> files by <see cref="NormalizedDirectory"/> path length. 107(e1, e2) => e1.NormalizedDirectory.Length.CompareTo(e2.NormalizedDirectory.Length));
CommandLine\AnalyzerConfigSet.cs (3)
208if (PathUtilities.IsSameDirectoryOrChildOf(normalizedPath, config.NormalizedDirectory, StringComparison.Ordinal)) 217int dirLength = config.NormalizedDirectory.Length; 221if (config.NormalizedDirectory[dirLength - 1] == '/')