10 references to Name
Microsoft.Build (10)
Instance\TaskRegistry.cs (10)
573
if (_cachedTaskRecordsWithFuzzyMatch.TryGetValue(taskIdentity.
Name
, out ConcurrentDictionary<RegisteredTaskIdentity, RegisteredTaskRecord> taskRecords))
641
= _cachedTaskRecordsWithFuzzyMatch.GetOrAdd(taskIdentity.
Name
,
645
_cachedTaskRecordsWithFuzzyMatch[taskIdentity.
Name
] = taskRecords;
740
if (rec.RegisteredName.Equals(taskIdentity.
Name
, StringComparison.OrdinalIgnoreCase))
900
if (TypeLoader.IsPartialTypeNameMatch(x.
Name
, y.
Name
))
926
if (String.Equals(x.
Name
, y.
Name
, StringComparison.OrdinalIgnoreCase))
946
int nameHash = String.IsNullOrEmpty(obj.
Name
) ? 0 : StringComparer.OrdinalIgnoreCase.GetHashCode(obj.
Name
);