1 write to NormalizedDirectory
Microsoft.CodeAnalysis (1)
CommandLine\AnalyzerConfig.cs (1)
171
NormalizedDirectory
= 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)
208
if (PathUtilities.IsSameDirectoryOrChildOf(normalizedPath, config.
NormalizedDirectory
, StringComparison.Ordinal))
217
int dirLength = config.
NormalizedDirectory
.Length;
221
if (config.
NormalizedDirectory
[dirLength - 1] == '/')