1 write to ProfiledLocations
Microsoft.Build.Framework (1)
Profiler\ProfilerResult.cs (1)
25ProfiledLocations = new ReadOnlyDictionary<EvaluationLocation, ProfiledLocation>(profiledLocations);
22 references to ProfiledLocations
Microsoft.Build (7)
Evaluation\Profiler\EvaluationProfiler.cs (1)
144if (!_evaluationProfiler.ProfiledResult.Value.ProfiledLocations.TryGetValue(Location, out var previousTimeSpent))
Evaluation\Profiler\ProfilerResultPrettyPrinter.cs (1)
41var profiledLocations = result.ProfiledLocations;
Logging\BinaryLogger\BuildEventArgsWriter.cs (2)
383Write(result.Value.ProfiledLocations.Count); 385foreach (var item in result.Value.ProfiledLocations)
Logging\ProfilerLogger.cs (1)
148foreach (var pair in profiledResult.ProfiledLocations.OrderBy(p => p.Key.Id))
LogMessagePacketBase.cs (2)
1032var count = value.ProfiledLocations.Count; 1035foreach (var item in value.ProfiledLocations)
Microsoft.Build.Engine.UnitTests (8)
BuildEventArgsSerialization_Tests.cs (1)
812e => ToString(e.ProfilerResult.Value.ProfiledLocations));
EvaluationProfiler_Tests.cs (7)
107var profiledElements = result.ProfiledLocations.Keys.ToList(); 139var profiledElements = result.ProfiledLocations.Keys.ToList(); 148var profiledElements = result.ProfiledLocations.Keys.ToList(); 192var profiledElements = result.ProfiledLocations.Keys.ToList(); 203var totalGlobLocation = result.ProfiledLocations[totalGlob]; 220var profiledElements = result.ProfiledLocations.Keys.ToList(); 251var profiledElements = result.ProfiledLocations.Keys.ToList();
Microsoft.Build.Framework (7)
Profiler\ProfilerResult.cs (7)
36return (ProfiledLocations == result.ProfiledLocations) || 37(ProfiledLocations.Count == result.ProfiledLocations.Count && 38!ProfiledLocations.Except(result.ProfiledLocations).Any()); 44return ProfiledLocations.Keys.Aggregate(0, (acum, location) => acum + location.GetHashCode());