5 references to s_invariantCompareInfo
Microsoft.Build (5)
Evaluation\Expander.Function.cs (1)
582
if (
s_invariantCompareInfo
.IndexOf(_expression, "::", CompareOptions.OrdinalIgnoreCase) > -1)
Evaluation\Expander.PropertyExpander.cs (4)
118
propertyStartIndex =
s_invariantCompareInfo
.IndexOf(expression, "$(", CompareOptions.Ordinal);
178
else if ((expression.Length - (propertyStartIndex + 2)) > 9 && tryExtractRegistryFunction &&
s_invariantCompareInfo
.IndexOf(expression, "Registry:", propertyStartIndex + 2, 9, CompareOptions.OrdinalIgnoreCase) == propertyStartIndex + 2)
189
else if ((propertyEndIndex - (propertyStartIndex + 2)) == 77 &&
s_invariantCompareInfo
.IndexOf(expression, @"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\VSTSDB@VSTSDBDirectory", propertyStartIndex + 2, 77, CompareOptions.OrdinalIgnoreCase) == propertyStartIndex + 2)
240
propertyStartIndex =
s_invariantCompareInfo
.IndexOf(expression, "$(", sourceIndex, CompareOptions.Ordinal);