1 write to ProfiledLocations
Microsoft.Build.Framework (1)
Profiler\ProfilerResult.cs (1)
25
ProfiledLocations
= new ReadOnlyDictionary<EvaluationLocation, ProfiledLocation>(profiledLocations);
22 references to ProfiledLocations
Microsoft.Build (7)
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)
383
Write(result.Value.
ProfiledLocations
.Count);
385
foreach (var item in result.Value.
ProfiledLocations
)
Logging\ProfilerLogger.cs (1)
148
foreach (var pair in profiledResult.
ProfiledLocations
.OrderBy(p => p.Key.Id))
LogMessagePacketBase.cs (2)
1032
var count = value.
ProfiledLocations
.Count;
1035
foreach (var item in value.
ProfiledLocations
)
Microsoft.Build.Engine.UnitTests (8)
BuildEventArgsSerialization_Tests.cs (1)
812
e => ToString(e.ProfilerResult.Value.
ProfiledLocations
));
EvaluationProfiler_Tests.cs (7)
107
var profiledElements = result.
ProfiledLocations
.Keys.ToList();
139
var profiledElements = result.
ProfiledLocations
.Keys.ToList();
148
var profiledElements = result.
ProfiledLocations
.Keys.ToList();
192
var profiledElements = result.
ProfiledLocations
.Keys.ToList();
203
var totalGlobLocation = result.
ProfiledLocations
[totalGlob];
220
var profiledElements = result.
ProfiledLocations
.Keys.ToList();
251
var profiledElements = result.
ProfiledLocations
.Keys.ToList();
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());