1 write to ProfiledLocations
Microsoft.Build.Framework (1)
Profiler\ProfilerResult.cs (1)
25
ProfiledLocations
= new ReadOnlyDictionary<EvaluationLocation, ProfiledLocation>(profiledLocations);
14 references to ProfiledLocations
Microsoft.Build (7)
BackEnd\Components\Communications\LogMessagePacket.cs (2)
127
var count = value.
ProfiledLocations
.Count;
130
foreach (var item in value.
ProfiledLocations
)
Evaluation\Profiler\EvaluationProfiler.cs (1)
144
if (!_evaluationProfiler.ProfiledResult.Value.
ProfiledLocations
.TryGetValue(Location, out var previousTimeSpent))
Evaluation\Profiler\ProfilerResultPrettyPrinter.cs (1)
41
var profiledLocations = result.
ProfiledLocations
;
Logging\BinaryLogger\BuildEventArgsWriter.cs (2)
387
Write(result.Value.
ProfiledLocations
.Count);
389
foreach (var item in result.Value.
ProfiledLocations
)
Logging\ProfilerLogger.cs (1)
148
foreach (var pair in profiledResult.
ProfiledLocations
.OrderBy(p => p.Key.Id))
Microsoft.Build.Framework (7)
Profiler\ProfilerResult.cs (7)
36
return (
ProfiledLocations
== result.
ProfiledLocations
) ||
37
(
ProfiledLocations
.Count == result.
ProfiledLocations
.Count &&
38
!
ProfiledLocations
.Except(result.
ProfiledLocations
).Any());
44
return
ProfiledLocations
.Keys.Aggregate(0, (acum, location) => acum + location.GetHashCode());